-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.09 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
import setuptools
from ran import fs, pkg
pkg.save('pycturing/asset/font.py', zip='assets/shs-cn-b.ttf')
setuptools.setup(
name='pycturing',
version='0.0.3',
description='yet a captcha library',
long_description=fs.load('readme.md'),
long_description_content_type='text/markdown',
url='https://github.com/chenshenchao/pycturing',
keywords='pycturing captcha',
license='MIT',
author='chenshenchao',
author_email='chenshenchao@outlook.com',
platforms='any',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=setuptools.find_packages(),
install_requires=[
'pillow==9.5.0',
'ran==0.0.5',
'torch==2.0.1',
'torchaudio==2.0.2',
'torchvision==0.15.2',
]
)