forked from stephanpoetschner/python-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 874 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
import sys
from setuptools import setup
meta = dict(
name="python-script",
version="0.1.0",
description="a Python script",
author="Will Maier",
author_email="[email protected]",
py_modules=["script"],
test_suite="tests",
install_requires=["setuptools"],
keywords="scripts",
url="http://packages.python.org/python-script",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
],
)
# Automatic conversion for Python 3 requires distribute.
if False and sys.version_info >= (3,):
meta.update(dict(
use_2to3=True,
))
setup(**meta)