-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setup.py, some minor reorganization to support it
- Loading branch information
Showing
4 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ pip-selfcheck.json | |
__pycache__ | ||
share/* | ||
.cache/* | ||
build/* | ||
dist/* | ||
*egg-info* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
from setuptools import setup | ||
import sys | ||
|
||
sys.path.extend('.') | ||
from todo import __version__ | ||
|
||
with open('requirements.txt') as f: | ||
reqs = [l.strip() for l in f] | ||
|
||
setup( | ||
name='gtd.py', | ||
version=__version__, | ||
install_requires=reqs, | ||
packages=['todo'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'gtd = gtd:main' | ||
] | ||
}, | ||
author = 'James Luck', | ||
author_email = 'me@jamesluck.com', | ||
license='BSD 3-clause', | ||
url = 'https://github.com/delucks/gtd.py', | ||
download_url = 'https://github.com/delucks/gtd.py/tarball/{}'.format(__version__), | ||
keywords = ['productivity', 'cli', 'trello', 'gtd', 'getting things done'], | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: BSD License', | ||
'Natural Language :: English', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: POSIX :: BSD', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Topic :: Utilities' | ||
] | ||
) |