-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.47 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.47 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
41
42
43
import io
import re
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
readme = f.read()
with io.open("rarog/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r"__version__ = '(.*?)'", f.read()).group(1)
setup(
name="rarog",
version=version,
url="https://github.com/ikhlestov/rarog",
project_urls={
"GitHub: repo": "https://github.com/ikhlestov/rarog",
"CI: Travis": "https://travis-ci.com/ikhlestov/rarog/",
"Coverage: codecov": "https://codecov.io/gh/ikhlestov/rarog/",
},
license="Apache 2",
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering :: Information Analysis',
],
description="Monitoring utility for machine learning experiments",
long_description=readme,
author="Illarion Khlestov",
author_email="khlyestovillarion@gmail.com",
maintainer="Illarion Khlestov",
maintainer_email="khlyestovillarion@gmail.com",
packages=["rarog"],
include_package_data=True,
python_requires=">=3.4.0",
install_requires=["clickhouse-driver", "numpy"]
)