-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
52 lines (44 loc) · 1.66 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
import os.path as p
version = '0.4.4'
with open(p.join(p.dirname(__file__), 'requirements', 'package.txt'), 'r') as reqs:
install_requires = [line.strip() for line in reqs]
tests_require = []
try:
with open(p.join(p.dirname(__file__), 'requirements', 'test.txt'), 'r') as reqs:
tests_require = [line.strip() for line in reqs]
except IOError:
pass
setup(
name="pipreq",
version=version,
author="Jessamyn Smith",
author_email="[email protected]",
url="https://github.com/jessamynsmith/pipreq",
download_url='https://github.com/jessamynsmith/pipreq/archive/v{0}.tar.gz'.format(version),
license='MIT',
description="Manages pip requirements files for multiple environments, e.g. production and "
"development",
long_description=open('README.rst').read(),
keywords=['pip', 'upgrade', 'requirements', 'heroku', 'development', 'production'],
install_requires=install_requires,
tests_require=tests_require,
packages=find_packages(exclude=['*test*']),
entry_points={
'console_scripts': [
'pipreq = pipreq.cli:main'
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
"Topic :: Software Development",
"Topic :: Utilities",
])