-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
30 lines (28 loc) · 935 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
28
29
30
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__, # noqa
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.6',
],
install_requires=['jinja2', 'setuptools'],
entry_points={'console_scripts': [
'poet=poet:main',
'poet_lint=poet.lint:main',
]}
)