-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.39 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
from setuptools import setup
with open("requirements.txt") as installation_requirements_file:
requirements = installation_requirements_file.read().splitlines()
with open("requirements-dev.txt") as test_requirements_file:
test_requirements = test_requirements_file.read().splitlines()
with open("README.md") as readme_file:
readme = readme_file.read()
project_urls = {
"Home": "https://github.com/matpompili/yamlpars",
"Documentation": "https://yamlpars.readthedocs.io/",
"Changelog": "https://github.com/matpompili/yamlpars/blob/main/CHANGELOG.md",
}
setup(
name="yamlpars",
version="0.4.2-beta.0",
packages=["yamlpars"],
author="Matteo Pompili",
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
description="With yamlpars you can save configurations and parameters to YAML files, in a structured and easy-to use way.",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=requirements,
test_suite="tests",
tests_require=test_requirements,
package_data={
"": ["LICENSE"],
"yamlpars": ["py.typed"],
},
project_urls=project_urls,
)