-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
144 lines (120 loc) · 3.72 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/env python
import os
import warnings
from setuptools import setup, find_packages
from textwrap import dedent
DESCRIPTION = ""
LONG_DESCRIPTION = """\
Python toolkit for working with GEOS-Chem output.
"""
DISTNAME = "geoschem-gcpy"
AUTHOR = "GEOS-Chem Support Team"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/geoschem/gcpy"
LICENSE = "MIT"
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
]
MAJOR = 1
MINOR = 5
MICRO = 0
EXTRA = '' # for alpha (aN), beta (bN), rc (rcN) versions
VERSION = f"{MAJOR}.{MINOR}.{MICRO}{EXTRA}"
'''
#DEV format (using git hash) is intriguing but incompatible with PEP 440
#No hashes can be used in version field
DEV = True
# Correct versioning with git info if DEV
if DEV:
import subprocess
pipe = subprocess.Popen(
['git', "describe", "--always", "--match", "v[0-9]*"],
stdout=subprocess.PIPE)
so, err = pipe.communicate()
if pipe.returncode != 0:
# no git or something wrong with git (not in dir?)
warnings.warn("WARNING: Couldn't identify git revision, using generic version string")
VERSION += ".dev"
else:
git_rev = so.strip()
git_rev = git_rev.decode('ascii') # necessary for Python >= 3
VERSION += ".dev-{}".format(git_rev)
'''
def _write_version_file():
fn = os.path.join(os.path.dirname(__file__), 'gcpy', '_version.py')
version_str = dedent("""
__version__ = '{}'
""")
# Write version file
with open(fn, 'w') as version_file:
version_file.write(version_str.format(VERSION))
# Write version and install
_write_version_file()
setup(
name = DISTNAME,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
maintainer = AUTHOR,
maintainer_email = AUTHOR_EMAIL,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
license = LICENSE,
url = URL,
version = VERSION,
packages = find_packages(),
include_package_data=True,
install_requires=[
"awscli==2.13.39",
"cartopy==0.22.0",
"cf_xarray==0.8.4",
"dask==2023.9.2",
"gridspec==0.1.0",
"ipython==8.15.0",
"joblib==1.3.2",
"jupyter==1.0.0",
"matplotlib==3.8.0",
"netcdf4==1.6.0",
"netcdf-fortran==4.5.4",
"numpy==1.26.0",
"pandas==2.1.1",
"pip==23.3",
"pylint==2.17.5",
"pyproj==3.6.1",
"python==3.9.18",
"pypdf==3.17.0",
"recommonmark==0.7.1",
"requests==2.32.0",
"scipy==1.11.2",
"sparselt==0.1.3",
"tabulate==0.9.0",
"tk==8.6.12",
"xarray==2023.8.0",
"esmf==8.1.1",
"esmpy==8.1.1",
"xesmf==0.5.1",
"docutils==0.16",
"jinja2==3.0.3",
"sphinx==3.5.4",
"sphinx-autoapi==1.9.0",
"sphinx-autobuild==2021.3.14",
"sphinxcontrib-bibtex==2.2.0",
"sphinx_rtd_theme==0.5.2",
],
classifiers = CLASSIFIERS
)
'''
Instructions for publishing new version to TestPyPi (mimics PyPi) and PyPi:
1. Update version numbers above and in _version.py and commit before releasing
2. Install twine if not available (pip install twine)
3. run python setup.py sdist bdist_wheel
4. run twine check dist/*
5. run twine upload --repository-url https://test.pypi.org/legacy/ dist/*
6. Test installation in a virtual environment using pip install --extra-index-url https://test.pypi.org/simple/ geoschem-gcpy
7. To publish to PyPi, run twine upload dist/*
'''