-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 863 Bytes
/
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
from setuptools import find_packages, setup
with open("./README.md") as readme_file:
readme = readme_file.read()
with open("./requirements.txt") as req_file:
requirements = req_file.read()
setup(
name='qubot',
version='0.0.13',
python_requires=">=3.7",
packages=find_packages(exclude=["tests", "examples", "docs"]),
url='https://github.com/anthonykrivonos/qubot',
include_package_data=True,
license='MIT',
author='anthonykrivonos, kenkenchuen',
author_email='[email protected], [email protected]',
description='Qubot automated testing framework.',
install_requires=requirements,
setup_requires=[],
long_description=readme,
long_description_content_type="text/markdown",
zip_safe=False,
entry_points={
"console_scripts": [
"qubot=qubot.main:main"
]
}
)