forked from roocs/roocs-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
101 lines (92 loc) · 3.31 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
#!/usr/bin/env python
"""The setup script."""
__author__ = "Elle Smith"
__contact__ = "eleanor.smith@stfc.ac.uk"
__copyright__ = "Copyright 2018 United Kingdom Research and Innovation"
__license__ = "BSD - see LICENSE file in top-level package directory"
__version__ = "0.6.7"
from setuptools import find_packages
from setuptools import setup
import os
# One strategy for storing the overall version is to put it in the top-level
# package's __init__ but Nb. __init__.py files are not needed to declare
# packages in Python 3
# Populate long description setting with content of README
#
# Use markdown format read me file as GitHub will render it automatically
# on package page
here = os.path.abspath(os.path.dirname(__file__))
_long_description = open(os.path.join(here, "README.rst")).read()
requirements = [line.strip() for line in open("requirements.txt")]
setup_requirements = [
"pytest-runner",
]
test_requirements = ["pytest", "tox"]
docs_requirements = [
"sphinx",
"sphinx-rtd-theme",
"nbsphinx",
"pandoc",
"ipython",
"ipykernel",
"jupyter_client",
"matplotlib",
]
setup(
author=__author__,
author_email=__contact__,
# See:
# https://www.python.org/dev/peps/pep-0301/#distutils-trove-classification
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"Topic :: Software Development :: Libraries :: Python Modules",
],
description="A package containing common components for the roocs project",
license=__license__,
# This qualifier can be used to selectively exclude Python versions -
# in this case early Python 2 and 3 releases
python_requires=">=3.8.0",
entry_points={
"console_scripts": [
"roocs_utils=roocs_utils.cli:main",
],
},
install_requires=requirements,
long_description=_long_description,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="roocs_utils",
name="roocs_utils",
packages=find_packages(
include=["roocs_utils", "roocs_utils.xarray_utils", "roocs_utils.*"]
),
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
extras_require={"docs": docs_requirements},
package_data={"roocs_utils": ["etc/roocs.ini"]},
url="https://github.com/roocs/roocs-utils",
version=__version__,
zip_safe=False,
)