-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
44 lines (40 loc) · 966 Bytes
/
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 find_packages, setup
import mltype
DESCRIPTION = "Command line tool for improving typing skills"
LONG_DESCRIPTION = DESCRIPTION
INSTALL_REQUIRES = [
"click",
"click-config-file",
"numpy",
"torch",
"pytorch-lightning>=1.0.0,<1.2",
"tqdm",
]
setup(
name="mltype",
version=mltype.__version__,
author="Jan Krepl",
author_email="kjan.official@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url="https://github.com/jankrepl/mltype",
packages=find_packages(exclude=["tests"]),
license="MIT",
install_requires=INSTALL_REQUIRES,
extras_require={
"dev": [
"black",
"flake8",
"pydocstyle",
"pytest",
"pytest-coverage",
"tox",
],
"mlflow": ["mlflow"],
},
entry_points={
"console_scripts": [
"mlt = mltype.cli:cli",
]
},
)