-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.1 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.1 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
import io
import os
import setuptools
name = 'gregory'
mydir = os.path.dirname(__file__)
def read_project_version():
fglobals = {}
with io.open(os.path.join(mydir, name, '_version.py'), encoding='UTF-8') as fd:
exec(fd.read(), fglobals) # To read __version__
return fglobals['__version__']
setuptools.setup(
packages=setuptools.find_packages(),
version=read_project_version(),
url=f'https://github.com/SynStratos/{name}',
python_requires='>=3.8, <3.11',
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
],
keywords=['time series', 'ts', 'timeseries', 'temporal data'],
install_requires=[
'outatime>=3.2.1,<4.0.0',
'python-dateutil',
'statsmodels',
'numpy',
'scipy'
]
)