-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (33 loc) · 1020 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
34
35
36
import os
from setuptools import setup
#
CLASSIFIERS = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7"
]
#
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pygemony',
install_requires=read('requirements/all.txt'),
version='0.4.2',
description=('Parse long-forgotten TODO messages from Github Repos and create Issues to resolve.'),
license=read("LICENSE"),
author='Ian Lee Clark',
author_email='[email protected]',
packages=['pyg'],
url='https://github.com/GrappigPanda/pygemony',
classifiers=CLASSIFIERS,
entry_points={
'console_scripts': [
'pygemony = pyg.run:main',
],
}
)