-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (35 loc) · 1.11 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
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("VERSION", "r") as fh:
version = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.readlines()
setup(
name="bossman",
version=version,
author="Anthony Hogg",
author_email="[email protected]",
description="Automation framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ynohat/bossman",
entry_points={
'console_scripts': [
'bossman = bossman.cli:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_namespace_packages(include=['bossman', 'bossman.*']),
package_data={'bossman.plugins.akamai.cloudlet_v3': ['schemas/*.json']},
install_requires=requirements,
python_requires='>=3.8,<4',
zip_safe=False
)