-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (58 loc) · 1.83 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
setup(
name='comix',
version='0.2.0',
author='Emanuele Vivoli',
author_email='[email protected]',
description='A pip package to convert and manage Comic Datasets to Unified XML format.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='http://github.com/emanuelevivoli/comix',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=[
'pillow',
'lxml',
'bs4',
'beautifulsoup4',
'matplotlib',
'tqdm',
'requests',
'numpy',
'scipy',
'pandas',
'scikit-learn',
'torch',
'torchaudio',
'torchvision',
'transformers',
'tokenizers',
'manga-py',
'mangadex',
'mloader',
'boto3',
'pycocotools',
'ultralytics',
'einops',
'shapely',
'timm',
'termcolor',
'rarfile',
'wandb',
# Add any other dependencies your package needs here.
# These will be installed when your package is installed.
],
python_requires='>=3.6', # Specify the minimum Python version required
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', # Update the license as appropriate
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
# Add any additional keywords relevant to your package
keywords='comics, dataset, xml, conversion, dcm, manga, mangadex, mloader',
)