-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.16 KB
/
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
# Importing the libraries
from setuptools import setup
# Defining the readme function
def readme():
with open('README.md') as f:
return f.read()
# Defining the setup function
setup(name='CVAugmentor',
version='1.0.12',
description='A package for augmenting images and videos for computer vision tasks',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/AliKHaliliT/CVAugmentor',
author='Ali Khalili Tazehkandgheshlagh',
author_email='ali.khalili.t98@gmail.com',
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
packages=['CVAugmentor', 'CVAugmentor.assets', 'CVAugmentor.assets.utils', 'CVAugmentor.assets.main'],
include_package_data=True,
install_requires=[
'colorama==0.4.6',
'numpy==1.24.3',
'opencv-python==4.6.0.66',
'Pillow==9.0.1',
'tqdm==4.64.0',
],
)