-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.05 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.05 KB
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
import pathlib
from setuptools import *
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="KS-BOT-Client-Python",
version="2.5.1",
description="Python framework for interacting with KS-BOT, without any app",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/KidsSMIT/KS-BOT-Client-Python",
project_urls={
"Bug Tracker": "https://github.com/pypa/sampleproject/issues",
},
author="Kids SMIT",
author_email="codingwithcn@gmail.com",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6",
install_requires = ["python-socketio[client]", "requests"],
include_package_data = True,
zip_safe = False,
)