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