-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (27 loc) · 1 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
import os
from setuptools import find_packages, setup
if os.path.exists("README.md"):
with open("README.md", "r") as f:
readme = f.read()
else:
readme = ""
setup(
name="conda-souschef",
packages=find_packages(where="src"),
use_scm_version={"write_to": "src/souschef/_version.py"},
setup_requires=["setuptools-scm", "setuptools>=30.3.0"],
package_data={"": ["LICENSE", "AUTHORS"]},
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.8",
install_requires=["ruamel.yaml >=0.15.3", "ruamel.yaml.jinja2"],
extras_require={"testing": ["pytest", "mock", "pytest-cov"]},
url="https://github.com/marcelotrevisani/souschef",
license="Apache-2.0",
author="Marcelo Duarte Trevisani",
author_email="marceloduartetrevisani@gmail.com",
description="Project to handle conda recipes",
long_description_content_type="text/markdown",
long_description=readme,
project_urls={"Source": "https://github.com/marcelotrevisani/souschef"},
)