-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 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
import setuptools
long_description = '''
Please refer to the homepage of the library
'''
setuptools.setup(
name="wwbot",
version="0.0.13a",
author="tbbatbb",
author_email="20682299+tbbatbb@users.noreply.github.com",
description="A library for dealing with messages in WeWork",
url="https://github.com/tbbatbb/WeWorkBot",
long_description_content_type='text/markdown',
long_description=long_description,
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)