-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (45 loc) · 1.28 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
46
47
48
49
50
51
52
"""Packaging settings."""
from codecs import open
from os.path import abspath, dirname, join
from subprocess import call
from setuptools import Command, find_packages, setup
from shakti import __version__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
setup(
name='shakti',
packages=find_packages(),
version=__version__,
description='CLI for the Shakti ML deployment platform written in Python',
long_description=long_description,
url='https://github.com/Dhanush123/shakti',
download_url='https://github.com/Dhanush123/shakti/archive/0.1.0.tar.gz',
author='Dhanush Patel',
author_email='dhanushpatel101@gmail.com',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'Programming Language :: Python :: 3'
],
keywords='cli',
entry_points={
'console_scripts': [
'shakti=shakti.cli:main',
],
},
python_requires='>=3.0',
install_requires=[
"autopep8",
"fire",
"firebase-admin",
"google-cloud-dataproc",
"pylint",
"pyspark",
"python-dotenv",
"rope",
"scikit-learn",
"tensorflow"
]
)