This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (48 loc) · 1.83 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
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import os
from setuptools import setup, find_packages
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()
about = {}
with open(os.path.join(here, 'malleefowl', '__version__.py'), 'r') as f:
exec(f.read(), about)
reqs = [line.strip() for line in open('requirements.txt')]
dev_reqs = [line.strip() for line in open('requirements_dev.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 :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: Apache Software License',
]
setup(name='malleefowl',
version=about['__version__'],
description="A Web Processing Service for Climate Data Access and Workflows.",
long_description=README + '\n\n' + CHANGES,
author=about['__author__'],
author_email=about['__email__'],
url='https://github.com/bird-house/malleefowl',
classifiers=classifiers,
license="Apache Software License 2.0",
keywords='wps pywps birdhouse malleefowl',
packages=find_packages(),
include_package_data=True,
install_requires=reqs,
extras_require={
"dev": dev_reqs, # pip install ".[dev]"
},
entry_points={
'console_scripts': [
'malleefowl=malleefowl.cli:cli',
]},)