-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 801 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
version = "0.4.10"
setup(
name="python-smartqq-client",
version=version,
description="A simple smartqq client implemented with python to be used as component in other projects",
author="Extremezhazha",
author_email="extremezhazha@gmail.com",
license="MIT",
keywords="python smartqq",
install_requires=["requests", "pymongo"],
packages=["pyqqclient"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Communications :: Chat",
"Environment :: Console",
"Operating System :: OS Independent"
]
)