Skip to content
This repository was archived by the owner on May 3, 2021. It is now read-only.

Commit dfc05f3

Browse files
committed
setup.py added
1 parent b1b3849 commit dfc05f3

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="commandintegrator",
8+
version="1.2.9",
9+
author="Simon Olofsson",
10+
author_email="dotchetter@protonmail.ch",
11+
description="A framework and API for developing chatbots and other command-driven applications",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/pypa/commandintegrator",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
],
21+
python_requires='>=3.8',
22+
)

0 commit comments

Comments
 (0)