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 ...@@ -3,41 +3,41 @@ import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read() README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.md')).read() CHANGES = open(os.path.join(here, 'CHANGES.md')).read()
requires = ['pyramid', 'pyramid_debugtoolbar'] requires = ['pyramid', 'pyramid_debugtoolbar']
setup(name='mistic', setup(
version='1.0', name='mistic',
description='mistic', version='1.0',
long_description=README + '\n\n' + CHANGES, description='mistic',
classifiers=[ long_description=README + '\n\n' + CHANGES,
"Programming Language :: Python", classifiers=[
"Framework :: Pylons", "Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP", "Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "Topic :: Internet :: WWW/HTTP",
], "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
author='Tobias Sargeant', "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
author_email='sargeant@wehi.edu.au', ],
url='', author='Tobias Sargeant',
keywords='web pyramid pylons', author_email='sargeant@wehi.edu.au',
packages=find_packages(), url='https://github.com/folded/mistic',
include_package_data=True, keywords='web pyramid pylons',
zip_safe=False, packages=find_packages(),
install_requires=requires, include_package_data=True,
tests_require=requires, zip_safe=False,
test_suite="mistic", install_requires=requires,
scripts = [ tests_require=requires,
'mistic/scripts/mistic' test_suite="mistic",
], scripts = [
entry_points = """\ 'mistic/scripts/mistic'
[paste.app_factory] ],
main = mistic.app:main entry_points = """\
[paste.app_factory]
[paste.paster_command] main = mistic.app:main
process-datasets = mistic.cmd.process_datasets:Command """,
""", paster_plugins=['pyramid'],
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