forked from bonobos/mlkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 682 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 682 Bytes
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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as fh:
requirements = fh.read().splitlines()
setup(
name='mlkit',
author='Diego De Lazzari',
author_email='diego.delazzari@gmail.com',
version='1.0.3',
use_scm_version=False,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/bonobos/mlkit',
packages=find_packages(),
include_package_data=False,
tests_require=['pytest'],
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3'
]
)