-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 981 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
39
40
#!/usr/bin python
from setuptools import setup
import versioneer
with open('LICENSE', 'r') as _f:
_license = _f.read()
with open('README.rst', 'r') as _f:
_long_description = _f.read()
with open('requirements.txt', 'r') as _f:
_requirements = _f.read().strip().split('\n')
setup(
name="pipver",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python versioning example",
long_description=_long_description,
url="http://pypi.python.org/pypi",
author="Rafael Lyra",
author_email="[email protected]",
license=_license,
packages=[
'pipver',
'test'],
scripts=[
"scripts/hw.py"
],
install_requires=_requirements,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: None',
'Operating System :: Ubuntu :: Linux',
'Programming Language :: Python 2.7.17'
]
)