-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 953 Bytes
/
setup.py
File metadata and controls
42 lines (37 loc) · 953 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires=[
'cycler',
'kiwisolver',
'matplotlib',
'numpy',
'opencv-python-headless',
'Pillow',
'pyparsing',
'python-dateutil',
'six',
'click',
]
setup(
name='ai-cv-utils',
version='0.0.6',
author='Gaston Alberto Bertolani',
author_email='gbertolani.in@gmail.com',
description='AI Computer Vision Utilities',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
url='https://github.com/gbertolani/ai-cv-utils',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Utilities',
],
license='AGPL3+',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.6',
entry_points='''
[console_scripts]
aicv=aicv.main:aicv
''',
)