-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 930 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 930 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
# requirements are in requirements.txt
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name='filter_stations',
version='0.8.3',
packages=find_packages(),
include_package_data=True,
description='A secure, unified Python interface for African climate data, integrating TAHMO station data and gridded datasets (IMERG, CHIRPS, ERA5, TAMSAT), and medium-to-seasonal weather models',
author='Austin Kaburia',
author_email='kaburiaaustin1@gmail.com',
url='https://github.com/kaburia/filter-stations',
install_requires=requirements,
entry_points={
'console_scripts': [
'my-script=filter_stations.filter_stations:main'
]
},
long_description=long_description,
long_description_content_type="text/markdown",
)