|
19 | 19 | Also installs included versions of third party libraries, if those libraries |
20 | 20 | are not already installed. |
21 | 21 | """ |
22 | | -from __future__ import print_function |
23 | | - |
24 | | -import sys |
25 | | - |
26 | | -if sys.version_info < (2, 6): |
27 | | - print('labkey-api-python requires python version >= 2.6.', |
28 | | - file=sys.stderr) |
29 | | - sys.exit(1) |
30 | | - |
31 | 22 | from distutils.core import setup |
| 23 | +from labkey import __version__ |
32 | 24 |
|
33 | 25 | packages = [ |
34 | 26 | 'labkey' |
|
38 | 30 |
|
39 | 31 | setup( |
40 | 32 | name='labkey', |
41 | | - version='0.24', |
| 33 | + version=__version__, |
42 | 34 | description='Python client API for LabKey Server', |
43 | 35 | long_description=long_desc, |
44 | 36 | license="Apache License 2.0", |
45 | 37 | author='Elizabeth Nelson', |
46 | 38 | author_email='eknelson@labkey.com', |
47 | 39 | maintainer='Brian Connolly', |
48 | 40 | maintainer_email='brian@labkey.com', |
49 | | - url='https://www.labkey.org/wiki/home/Documentation/page.view?name=python', |
| 41 | + url='https://github.com/LabKey/labkey-api-python', |
50 | 42 | packages=packages, |
51 | 43 | package_data={}, |
52 | 44 | keywords="labkey api client", |
53 | 45 | classifiers=[ |
54 | | - 'Development Status :: 4 - Beta', |
55 | | - 'Environment :: Console', |
56 | | - 'Intended Audience :: Science/Research', |
57 | | - 'Intended Audience :: System Administrators', |
58 | | - 'License :: OSI Approved :: Apache Software License', |
59 | | - 'Operating System :: MacOS', |
60 | | - 'Operating System :: Microsoft', |
61 | | - 'Operating System :: POSIX', |
62 | | - 'Programming Language :: Python :: 2', |
63 | | - 'Topic :: Scientific/Engineering' |
| 46 | + 'Development Status :: 4 - Beta', |
| 47 | + 'Environment :: Console', |
| 48 | + 'Intended Audience :: Science/Research', |
| 49 | + 'Intended Audience :: System Administrators', |
| 50 | + 'License :: OSI Approved :: Apache Software License', |
| 51 | + 'Operating System :: MacOS', |
| 52 | + 'Operating System :: Microsoft', |
| 53 | + 'Operating System :: POSIX', |
| 54 | + 'Programming Language :: Python :: 2', |
| 55 | + 'Topic :: Scientific/Engineering' |
64 | 56 | ] |
65 | 57 | ) |
0 commit comments