-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (24 loc) · 925 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
from distutils.core import setup
def load_requirements():
with open("requirements.txt") as requirements:
return requirements.read().splitlines()
setup(name="rparse",
version="0.2.0",
description="requirements.txt parser",
author="Dmitry Veselov",
author_email="[email protected]",
url="https://github.com/dveselov/rparse",
py_modules=["rparse"],
scripts=["rparse.py"],
install_requires=load_requirements(),
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)