forked from Hashmap-Software-Agency/Pyttman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.4 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
47
48
49
from pyttman.version import __version__
from pathlib import Path
from setuptools import setup, find_packages
HERE = 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="Pyttman",
version=__version__,
description="The Python chatbot framework with batteries included",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/dotchetter/Pyttman",
author="Simon Olofsson",
project_urls={
"Bug Tracker": "https://github.com/dotchetter/Pyttman/issues",
"Changelog": "https://github.com/dotchetter/Pyttman/blob/main/CHANGELOG.md"
},
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
include_package_data=True,
install_requires=[
"multidict",
"discord.py",
"requests",
"py7zr",
"ordered_set",
],
entry_points={
"console_scripts": [
"pyttman=pyttman.tools.pyttmancli:run",
]
},
)