forked from TestBoxLab/chalice-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.05 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
import pathlib
import pkg_resources
import setuptools
LIBRARY_NAME = "mobsuccess-chalice-spec"
MAINTAINER = "[email protected]"
with open("README.md", "r") as fh:
long_description = fh.read()
with pathlib.Path("requirements.txt").open() as requirements_txt:
install_requires = [
str(requirement)
for requirement in pkg_resources.parse_requirements(requirements_txt)
]
setuptools.setup(
name=LIBRARY_NAME,
version="0.4.0",
author="Mobsuccess",
author_email=MAINTAINER,
description="mobsuccess python chalice spec library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mobsuccess-devops/chalice-spec",
packages=setuptools.find_packages(),
package_data={
LIBRARY_NAME: ["*.pyi", "**/*.pyi"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
setup_requires=["wheel"],
install_requires=install_requires,
)