-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
42 lines (37 loc) · 1.09 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
import sys, os
from setuptools import setup
"""
Use pandoc to convert README.md to README.rst before uploading
pandoc README.md -o README.rst
"""
if "publish" in sys.argv:
os.system("python setup.py sdist upload")
os.system("python setup.py bdist_wheel upload")
sys.exit()
setup(
name="piprot",
version="0.10.0",
author="Brenton Cleeland",
author_email="[email protected]",
packages=["piprot", "piprot.providers"],
url="http://github.com/sesh/piprot",
license="MIT License",
description="How rotten are your requirements?",
long_description="",
entry_points={
"console_scripts": [
"piprot = piprot.piprot:piprot",
]
},
install_requires=["six"],
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Utilities",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)