-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.79 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name='pxyTools',
packages=[
"pxyTools"
],
version='1.1.9',
description='A collection of python tools to save time on my personal projects',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Proxymiity/pxyTools-python',
download_url='https://github.com/Proxymiity/pxyTools-python/releases',
changelog='https://github.com/Proxymiity/pxyTools-python/releases',
documentation='https://github.com/Proxymiity/pxyTools-python/wiki',
source='https://github.com/Proxymiity/pxyTools-python/tree/main/pxyTools',
author='Proxymiity',
author_email='[email protected]',
license='MIT',
install_requires=[
'requests>=2.25.0',
],
extras_require={
"all": [
'img2pdf>=0.4.3',
'Pillow>=8.4.0'
],
"pdf": [
'img2pdf>=0.4.3',
'Pillow>=8.4.0'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Intended Audience :: Developers'
],
zip_safe=False,
python_requires='>=3.7'
)