-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.15 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="happenings",
version="0.0.2",
author="Tim Nonet",
author_email="[email protected]",
description="A utility package for creating complex event based time-series data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TNonet/happenings",
project_urls={
"Bug Tracker": "https://github.com/TNonet/happenings/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(where="happenings"),
python_requires=">=3.7",
extras_require={"test": [
"attrs>=19.2.0", # Usually installed by hypothesis, but current issue
# #https://github.com/HypothesisWorks/hypothesis/issues/2113
'hypothesis',
'pytest',
]
},
install_requires=[
'numpy>=1.19.0',
'scipy>=1.1.0',
'pandas>=1.0.0',
'python-dateutil'
]
)