-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.29 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.29 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
42
43
44
45
from pathlib import Path
from setuptools import find_packages, setup
readme_file = Path(__file__).absolute().parent / "README.md"
with readme_file.open("r") as fp:
long_description = fp.read()
version = {}
with open("postprocessinglib/__version__.py", "r") as fp:
exec(fp.read(), version)
setup(
name='nhs_posprocessing',
version=version["__version__"],
packages=[
'postprocessinglib',
'postprocessinglib.evaluation',
'postprocessinglib.utilities'
],
url='https://nhs-postprocessing.readthedocs.io/en/stable/',
project_urls={
'Visualization': 'https://github.com/users/fuadyassin/projects/4',
'Data Manipulation': 'https://github.com/users/fuadyassin/projects/2',
'Documentation': 'https://github.com/users/fuadyassin/projects/5',
},
author='Fuad Yassin',
author_email='fuad.yassin@ec.gc.ca',
description='NHS Post Processing library',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.10',
install_requires=[
'numpy',
'pandas',
'xarray',
'netcdf4',
'matplotlib',
'geopandas',
'shapely',
'openpyxl',
'natsort'
],
test_suite='tests',
license='MIT'
)