-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
40 lines (31 loc) · 1.05 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
40
import setuptools
from setuptools import setup
import os
cwd = os.path.dirname(os.path.realpath(__file__))
file = os.path.join(cwd, 'requirements.txt')
with open(file) as f:
dependencies = list(map(lambda x: x.replace("\n", ""), f.readlines()))
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='robusta',
author='Bogdan Gromov',
author_email="uberkinder@yandex.com",
description="Robusta ML Framework",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=dependencies,
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.6',
classifiers=[
'Intended Audience :: Science',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Data Science :: Machine Learning',
]
)