-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
27 lines (25 loc) · 893 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
versionfile = 'poet/version.py'
with open(versionfile, 'rb') as f:
exec(compile(f.read(), versionfile, 'exec'))
setup(
name='homebrew-pypi-poet',
version=__version__,
url='https://github.com/tdsmith/homebrew-pypi-poet',
license='MIT',
author='Tim D. Smith',
author_email='[email protected]',
description='Writes Homebrew stanzas for pypi packages',
packages=['poet'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
],
install_requires = ['jinja2', 'setuptools', 'tl.eggdeps'],
entry_points = {'console_scripts': ['poet=poet:main']}
)