-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
31 lines (29 loc) · 983 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="timeseries_generator",
description="Library for generating time series data",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
# TODO: Once we use apis to import public data, the `package_data` is no longer required.
package_data={
"timeseries_generator": ["resources/public_data/*.csv"]
},
version="0.1.0",
url='https://github.com/Nike-Inc/ts-generator',
author='Zhe Sun, Jaap Langemeijer',
author_email='[email protected]',
install_requires=[
"pandas>=1.2.0",
"workalendar>=15.0.1",
"matplotlib>=3.3.3"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
license='Apache License, v2.0',
python_requires='>=3.6',
)