-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (37 loc) · 1 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='filter_stations',
version='0.6.2',
packages=find_packages(),
include_package_data=True,
description='Making it easier to navigate and clean TAHMO weather station data for ML development',
author='Austin Kaburia',
author_email='kaburiaaustin1@gmail.com',
url='https://github.com/kaburia/filter-stations',
install_requires=[
'pandas',
'requests',
'python-dateutil',
'argparse',
'haversine',
'matplotlib',
'numpy',
'IPython',
'folium',
'datetime',
'statsmodels',
'tqdm',
'geopandas',
'matplotlib-scalebar',
'scikit-learn'
],
entry_points={
'console_scripts': [
'my-script=filter_stations.filter_stations:main'
]
},
long_description=long_description,
long_description_content_type="text/markdown",
)