-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
44 lines (41 loc) · 1.21 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
from setuptools import setup
from os import path
# read the contents of the README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="numerai-cli",
version="1.1.3",
description="A library for deploying Numer.ai Prediction Nodes.",
url="https://github.com/numerai/numerai-cli",
author="Numer.ai",
author_email="[email protected]",
license="MIT",
packages=["numerai"],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.6.0",
install_requires=[
"click>=7",
"boto3",
"botocore",
"numerapi>=2.4.5",
"colorama",
"requests",
"azure-identity",
"azure-mgmt-subscription",
"azure-mgmt-containerregistry",
"azure-containerregistry",
"azure-data-tables",
"azure-mgmt-storage",
"google-cloud-storage",
"google-cloud-run",
"google-cloud-artifact-registry",
"google-cloud-logging",
],
entry_points={
"console_scripts": ["numerai=numerai:main"],
},
)