|
1 | 1 | import re
|
2 | 2 | import sys
|
3 | 3 | from ez_setup import use_setuptools
|
4 |
| -use_setuptools() |
| 4 | + |
| 5 | +MIN_SETUPTOOLS_VERSION = "0.7" |
| 6 | +use_setuptools(version=MIN_SETUPTOOLS_VERSION) |
5 | 7 | from setuptools import setup
|
6 | 8 |
|
7 | 9 |
|
@@ -32,16 +34,30 @@ def parse_version(module_file):
|
32 | 34 | setup(
|
33 | 35 | name="ga4gh",
|
34 | 36 | version=ga4gh_version,
|
| 37 | + description="A reference implementation of the ga4gh API", |
| 38 | + license='Apache License 2.0', |
35 | 39 | long_description=ga4gh_readme,
|
36 | 40 | packages=["ga4gh"],
|
37 |
| - author="AUTHOR FIXME", |
38 |
| - author_email="FIXME@somewhere.org", |
39 |
| - url="http://pypi.python.org/pypi/ga4gh", |
| 41 | + author="Global Alliance for Genomics and Health", |
| 42 | + author_email="theglobalalliance@genomicsandhealth.org", |
| 43 | + url="https://github.com/ga4gh/server", |
40 | 44 | entry_points={
|
41 | 45 | 'console_scripts': [
|
42 | 46 | 'ga4gh_client=ga4gh.cli:client_main',
|
43 | 47 | 'ga4gh_server=ga4gh.cli:server_main',
|
44 | 48 | ]
|
45 | 49 | },
|
| 50 | + classifiers=[ |
| 51 | + 'Development Status :: 3 - Alpha', |
| 52 | + 'Intended Audience :: Science/Research', |
| 53 | + 'License :: OSI Approved :: Apache Software License', |
| 54 | + 'Natural Language :: English', |
| 55 | + |
| 56 | + # We should add other versions that we can confirm pass the tests (2.6?) |
| 57 | + 'Programming Language :: Python :: 2.7', |
| 58 | + |
| 59 | + 'Topic :: Scientific/Engineering :: Bio-Informatics', |
| 60 | + ], |
| 61 | + keywords='genomics reference', |
46 | 62 | install_requires=requirements,
|
47 | 63 | )
|
0 commit comments