1 | # BSD Licence |
---|
2 | # Copyright (c) 2012, Science & Technology Facilities Council (STFC) |
---|
3 | # All rights reserved. |
---|
4 | # |
---|
5 | # See the LICENSE file in the source distribution of this software for |
---|
6 | # the full license text. |
---|
7 | |
---|
8 | from setuptools import setup, find_packages |
---|
9 | import sys, os |
---|
10 | |
---|
11 | # Load long_description from README.txt |
---|
12 | here = os.path.dirname(__file__) |
---|
13 | readme_txt = os.path.join(here, 'README.txt') |
---|
14 | long_description = '\n\n' + open(readme_txt).read() |
---|
15 | |
---|
16 | setup(name='ceda-cc', |
---|
17 | version='1.2', |
---|
18 | description="CEDA Conformance Checker", |
---|
19 | long_description=long_description, |
---|
20 | classifiers=[ |
---|
21 | 'Development Status :: 5 - Production/Stable', |
---|
22 | 'License :: OSI Approved :: BSD License', |
---|
23 | 'Topic :: Scientific/Engineering', |
---|
24 | 'Programming Language :: Python :: 2.6', |
---|
25 | ], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
26 | keywords='', |
---|
27 | author='Martin Juckes', |
---|
28 | author_email='Martin.Juckes@stfc.ac.uk', |
---|
29 | url='http://proj.badc.rl.ac.uk/exarch/wiki/PackageCedaccInstall', |
---|
30 | #download_url='' |
---|
31 | license='BSD', |
---|
32 | packages=find_packages(), |
---|
33 | include_package_data=True, |
---|
34 | zip_safe=False, |
---|
35 | # We won't manage dependencies here for now. |
---|
36 | #install_requires=[ |
---|
37 | #], |
---|
38 | entry_points= { |
---|
39 | 'console_scripts': ['ceda-cc = ceda_cc.c4:main_entry'], |
---|
40 | }, |
---|
41 | ) |
---|