-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
38 lines (35 loc) · 1.46 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
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="microprediction",
version="1.2.0",
description="Client for www.microprediction.org turnkey community prediction",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/microprediction/microprediction",
author="microprediction",
author_email="info@microprediction.org",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=["microprediction", "microprediction.live", "microprediction.inclusion","microprediction.univariate", "microprediction.bespoke",
"microprediction.bespoke.meme_stocks","microprediction.bespoke.golf","microprediction.bespoke.crypto"],
test_suite='pytest',
tests_require=['pytest', 'scipy'],
include_package_data=True,
install_requires=["numpy>=1.23.5", "pandas", "contexttimer", "requests",
"getjson>=2.0.0", "microconventions>=1.0.0","pytz>=2021.3",
'pycoingecko', 'tdigest','genson','hyperopt',
'scikit-learn','statsmodels','copulas'],
entry_points={
"console_scripts": [
"microprediction=microprediction.__main__:main",
]
},
)