-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (38 loc) · 1.27 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
#!/usr/bin/env python
# Motherstarter setup file
from setuptools import setup, find_packages
from motherstarter import __version__, __author__
# Open and read README file
with open("README.md", "r", encoding="utf-8") as f:
README = f.read()
# Setup requirements to be installed
requirements = []
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
author_email="danielfjteycheney@gmail.com",
description="Network automation inventory data translation tool.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/writememe/motherstarter",
name="motherstarter",
license="Apache License 2.0",
version=__version__,
author=__author__,
packages=find_packages(),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
python_requires=">=3.8",
include_package_data=True,
install_requires=requirements,
entry_points="""
[console_scripts]
motherstarter=motherstarter.motherstarter:cli
""",
)