-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsetup.py
45 lines (37 loc) · 1.38 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
39
40
41
42
43
44
45
from setuptools import setup
from setuptools import find_packages
def load(path):
return open(path, 'r').read()
numerapi_version = '2.19.1'
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"]
if __name__ == "__main__":
setup(
name="numerapi",
version=numerapi_version,
maintainer="uuazed",
maintainer_email="[email protected]",
description="Automatically download and upload data for the Numerai machine learning competition",
long_description=load('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/uuazed/numerapi',
platforms="OS Independent",
classifiers=classifiers,
license='MIT License',
package_data={'numerai': ['LICENSE', 'README.md']},
packages=find_packages(exclude=['tests']),
install_requires=["requests", "pytz", "python-dateutil",
"tqdm>=4.29.1", "click>=7.0", "pandas>=1.1.0"],
entry_points={
'console_scripts': [
'numerapi = numerapi.cli:cli'
]
},
)