This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (42 loc) · 1.56 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
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import os
from setuptools import setup, find_packages
version = __import__('copernicus').__version__
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
reqs = [line.strip() for line in open('requirements.txt')]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: Apache Software License',
]
setup(name='copernicus',
version=version,
description="Demo with WPS processes for copernicus.",
long_description=README + '\n\n' + CHANGES,
author="Carsten Ehbrecht",
author_email='[email protected]',
url='https://github.com/cp4cds/copernicus',
classifiers=classifiers,
license="Apache Software License 2.0",
keywords='wps pywps birdhouse copernicus',
packages=find_packages(),
include_package_data=True,
install_requires=reqs,
entry_points={
'console_scripts': [
'copernicus=copernicus.cli:cli',
]},)