-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
30 lines (26 loc) · 877 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
#!/usr/bin/env python
# this script allows us to publish sureal in PyPi and the use it using 'pip install sureal'
# run 'python setup.py sdist bdist_wheel' to create the distribution files within sureal/python/src/
from setuptools import setup
setup(
name="sureal",
setup_requires=["setupmeta"],
versioning="dev",
author="Zhi Li",
author_email="[email protected]",
include_package_data=True,
url="https://github.com/Netflix/sureal",
classifiers=[
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
'Operating System :: Unix',
],
entry_points={
'console_scripts': [
'sureal = sureal.__main__:main'
]
},
)