forked from sigmavirus24/Todo.txt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (36 loc) · 1.27 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
#!/usr/bin/env python
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] in ("submit", "publish"):
os.system("python setup.py sdist upload")
sys.exit()
packages = []
requires = []
setup(
name="todo.py",
version="0.3",
description="Python version of Gina Trapani's popular bash script.",
long_description="\n\n".join([open("README.rst").read(),
open("HISTORY.rst").read()]),
author="graffatcolmingov",
author_email="[email protected]",
url="https://github.com/sigmavirus24/Todo.txt-python",
package_data={'': ['LICENSE']},
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: IronPython',
'Programming Language :: Python :: Implementation :: PyPy',
),
scripts=["todo.py"]
)