Line | |
---|
1 | import os |
---|
2 | |
---|
3 | from setuptools import setup, find_packages |
---|
4 | |
---|
5 | here = os.path.abspath(os.path.dirname(__file__)) |
---|
6 | README = open(os.path.join(here, 'README.txt')).read() |
---|
7 | CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() |
---|
8 | |
---|
9 | requires = [ |
---|
10 | 'repoze.bfg', |
---|
11 | 'repoze.zodbconn', |
---|
12 | 'repoze.tm', |
---|
13 | 'ZODB3', |
---|
14 | ] |
---|
15 | |
---|
16 | setup(name='mzcms', |
---|
17 | version='0.0', |
---|
18 | description='mzcms', |
---|
19 | long_description=README + '\n\n' + CHANGES, |
---|
20 | classifiers=[ |
---|
21 | "Programming Language :: Python", |
---|
22 | "Framework :: BFG", |
---|
23 | "Topic :: Internet :: WWW/HTTP", |
---|
24 | "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", |
---|
25 | ], |
---|
26 | author='Danny Navarro', |
---|
27 | author_email='j@dannynavarro.net', |
---|
28 | url='http://dannynavarro.net', |
---|
29 | keywords='web wsgi bfg proteomics', |
---|
30 | packages=find_packages(), |
---|
31 | include_package_data=True, |
---|
32 | zip_safe=False, |
---|
33 | install_requires = requires, |
---|
34 | tests_require= requires, |
---|
35 | test_suite="mzcms", |
---|
36 | entry_points = """\ |
---|
37 | [paste.app_factory] |
---|
38 | app = mzcms.run:app |
---|
39 | """ |
---|
40 | ) |
---|
41 | |
---|
Note: See
TracBrowser
for help on using the repository browser.