-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 994 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
#!/usr/bin/env python
import pip.req
import pip.download
from setuptools import setup, find_packages
execfile('sprintly/pkg_info.py')
install_reqs = pip.req.parse_requirements('requirements.txt', session=pip.download.PipSession())
reqs = [str(ir.req) for ir in install_reqs]
setup(
name='sprintly',
version=__version__,
description='API wrapper for Sprint.ly',
author=__author__,
url='https://github.com/catskul/python-sprintly',
packages=find_packages(),
keywords='sprintly api wrapper',
zip_safe=True,
install_requires=reqs,
scripts=['scripts/sprintly-cli'],
py_modules=['sprintly'],
classifiers=[
'Development Status :: 3 - Alpha'
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)