-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
46 lines (44 loc) · 1.34 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
from setuptools import setup, find_packages
from stashconnect import __version__
VERSION = __version__
DESCRIPTION = "An API wrapper for stashcat and schul.cloud."
setup(
name="stashconnect",
version=VERSION,
author="BuStudios",
author_email="support@bustudios.org",
description=DESCRIPTION,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/BuStudios/StashConnect",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
],
keywords=[
"stashconnect",
"stashcat api",
"stashcat python",
"schul.cloud api",
"schul.cloud python",
"stashcat bot",
"schul.cloud bot",
],
install_requires=[
"requests",
"pycryptodome",
"python-socketio",
"Pillow",
"websocket-client",
],
project_urls={
"Bug Tracker": "https://github.com/BuStudios/StashConnect/issues",
"Documentation": "https://github.com/BuStudios/StashConnect/wiki",
"Source Code": "https://github.com/BuStudios/StashConnect",
},
python_requires=">=3.10",
)