-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.legacy.py
executable file
·42 lines (40 loc) · 1.32 KB
/
setup.legacy.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
from setuptools import setup
from rule34Py.__vars__ import __version__, __author__, __email__
with open('README.md', 'r') as rmdf:
long_description = rmdf.read()
setup(
name='rule34Py',
version=__version__,
description='API wraper for rule34.xxx',
url="https://github.com/b3yc0d3/rule34Py",
author=__author__,
author_email=__email__,
long_description=long_description,
long_description_content_type="text/markdown",
packages=['rule34Py'],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.5",
"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",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
install_requires = [
"beautifulsoup4 >= 4.9.3",
"requests >= 2.27.1",
"lxml >= 4.6.4"
],
setup_requires = [
"beautifulsoup4 >= 4.9.3",
"requests >= 2.27.1",
"lxml >= 4.6.4"
],
project_urls={
"Issue tracker": "https://github.com/b3yc0d3/rule34Py/issues"
}
)