forked from WhoopInc/mkwheelhouse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (36 loc) · 928 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
31
32
33
34
35
36
37
38
from setuptools import setup
install_requires = [
'awscli >= 1.3.6',
'boto >= 2.38.0',
'yattag >= 0.9.2',
'wheel >= 0.23.0',
'pip >= 1.5.4',
'six >= 1.9.0',
]
setup(
name='mkwheelhouse',
version='2.0.0',
author='Nikhil Benesch',
author_email='[email protected]',
py_modules=['mkwheelhouse'],
url='https://github.com/WhoopInc/mkwheelhouse',
description='Amazon S3 wheelhouse generator',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools'
],
install_requires=install_requires,
extras_require={
'tests': [
'pre-commit'
]
},
entry_points={
'console_scripts': [
'mkwheelhouse=mkwheelhouse:parse_args'
],
}
)