-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (52 loc) · 1.54 KB
/
setup.py
File metadata and controls
55 lines (52 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
from os import path
import setuptools
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='hotstepper',
version='1.0.10',
description='Numpy based step function library.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tanglespace/hotstepper',
author='Jackson Storm',
author_email='c6lculus8ntr0py@gmail.com',
license='MIT',
project_urls={
'Documentation': 'https://hotstepper.readthedocs.io/',
'Source': 'https://github.com/tanglespace/hotstepper',
'Tracker': 'https://github.com/tanglespace/hotstepper/issues',
},
packages=setuptools.find_packages(),
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'numpy',
'matplotlib',
'numpy-indexed==0.3.5',
'pandas',
'pytz>=2020.1',
'seaborn',
'scipy',
'statsmodels',
'numba>=0.51.2',
],
python_requires='>=3.6',
keywords=[
'HotStepper',
'Step Functions',
'Linear Algebra',
'Event Data',
'Data Analysis',
'Analysis',
'Data Modelling',
'Time Series',
'Kernel Methods',
],
)