forked from ec-jrc/pyPoseidon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·77 lines (53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
from setuptools import find_packages, setup
# from distutils.core import setup
# from distutils.extension import Extension
# import numpy as np
def readme():
with open("README.md") as f:
return f.read()
# copy structure from xarray/xarray-extras setup
DISTNAME = "pyposeidon"
ISRELEASED = False
VERSION = "0.6.0"
QUALIFIER = ""
LICENSE = "EUPL 1.2"
AUTHOR = "George Breyiannis"
AUTHOR_EMAIL = "[email protected]"
CLASSIFIERS = [
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
DESCRIPTION = ""
LONG_DESCRIPTION = ""
PYTHON_REQUIRES = ""
INSTALL_REQUIRES = ""
SETUP_REQUIRES = ""
TESTS_REQUIRE = ["pytest >= 3.8"]
URL = ""
setup(
name=DISTNAME,
version=VERSION,
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
setup_requires=SETUP_REQUIRES,
tests_require=TESTS_REQUIRE,
url=URL,
packages=find_packages(),
package_data={"pyposeidon": ["misc/*"]},
)