Skip to content
Snippets Groups Projects
Commit 9563a60f authored by Tobias Sargeant's avatar Tobias Sargeant Committed by Tobias Sargeant
Browse files

reformat, add license classifier.

parent a7412704
No related branches found
No related tags found
No related merge requests found
......@@ -3,41 +3,41 @@ import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.md')).read()
requires = ['pyramid', 'pyramid_debugtoolbar']
setup(name='mistic',
version='1.0',
description='mistic',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Tobias Sargeant',
author_email='sargeant@wehi.edu.au',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="mistic",
scripts = [
'mistic/scripts/mistic'
],
entry_points = """\
[paste.app_factory]
main = mistic.app:main
[paste.paster_command]
process-datasets = mistic.cmd.process_datasets:Command
""",
paster_plugins=['pyramid'],
)
setup(
name='mistic',
version='1.0',
description='mistic',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
author='Tobias Sargeant',
author_email='sargeant@wehi.edu.au',
url='https://github.com/folded/mistic',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="mistic",
scripts = [
'mistic/scripts/mistic'
],
entry_points = """\
[paste.app_factory]
main = mistic.app:main
""",
paster_plugins=['pyramid'],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment