|
Revision 107, 0.9 KB
(checked in by mauro, 3 years ago)
|
|
pre tag 1.0.0
|
| Line | |
|---|
| 1 | from setuptools import setup, find_packages |
|---|
| 2 | import sys, os |
|---|
| 3 | |
|---|
| 4 | version = '1.0.0' |
|---|
| 5 | |
|---|
| 6 | setup(name='biocomp.pscoils', |
|---|
| 7 | version=version, |
|---|
| 8 | description="PS-COILS", |
|---|
| 9 | long_description="""\ |
|---|
| 10 | """, |
|---|
| 11 | classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
|---|
| 12 | keywords='Bio', |
|---|
| 13 | author='Piero Fariselli', |
|---|
| 14 | author_email='piero@biocomp.unibo.it', |
|---|
| 15 | url='http://www.biocomp.unibo.it/piero/PS-COILS/', |
|---|
| 16 | license='GPLv3', |
|---|
| 17 | packages=find_packages('src',exclude=['ez_setup', 'examples', 'tests']), |
|---|
| 18 | package_dir={'':'src'}, |
|---|
| 19 | namespace_packages=['biocomp'], |
|---|
| 20 | scripts=['scripts/pscoils',], |
|---|
| 21 | test_suite='tests', |
|---|
| 22 | include_package_data=True, |
|---|
| 23 | zip_safe=False, |
|---|
| 24 | install_requires=[ |
|---|
| 25 | # -*- Extra requirements: -*- |
|---|
| 26 | ], |
|---|
| 27 | entry_points=""" |
|---|
| 28 | # -*- Entry points: -*- |
|---|
| 29 | """, |
|---|
| 30 | ) |
|---|