-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 1.24 KB
/
setup.py
File metadata and controls
41 lines (34 loc) · 1.24 KB
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
from setuptools import setup, find_packages
from ukcp_dp.constants import VERSION
def readme():
with open("README.md") as f:
return f.read()
reqs = [line.strip() for line in open("requirements.txt")]
GIT_REPO = "https://github.com/ukcp-data/ukcp-data-processor"
setup(
name="ukcp-data-processor",
version=VERSION,
description="Python library for reading, writing, processing and plotting UKCP data.",
long_description=readme(),
long_description_content_type="text/markdown",
license="BSD - See ceda_example/LICENSE file for details",
author="Antony Wilson",
author_email="antony.wilson@stfc.ac.uk",
url=GIT_REPO,
packages=find_packages(),
install_requires=reqs,
tests_require=["pytest", "pytest-cov", "nccmp", "ImageHash"],
classifiers=[
"Development Status :: 2 - ???",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: ???",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
],
include_package_data=True,
scripts=[],
entry_points={},
package_data={"ceda_example": ["LICENSE"]},
)