forked from conda/grayskull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 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
43
44
45
46
47
48
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="grayskull",
packages=find_packages(),
entry_points={
"console_scripts": [
"grayskull = grayskull.__main__:main",
"greyskull = grayskull.__main__:main",
]
},
use_scm_version={"write_to": "grayskull/_version.py"},
setup_requires=["setuptools-scm", "setuptools>=30.3.0"],
package_data={"": ["LICENSE", "license/data/*", "license/data/*.*"]},
include_package_data=True,
python_requires=">=3.7",
install_requires=[
"requests",
"ruamel.yaml >=0.16.10",
"ruamel.yaml.jinja2",
"stdlib-list",
"pip",
"setuptools >=30.3.0",
"rapidfuzz >=0.7.6,<0.13.0",
"progressbar2 >=3.53.0",
"colorama",
],
extras_require={
"testing": ["pytest", "mock", "pytest-cov", "pytest-console-scripts"]
},
url="https://github.com/conda-incubator/grayskull",
license="MIT",
author="Marcelo Duarte Trevisani",
author_email="[email protected]",
description="Project to generate recipes for conda packages.",
long_description_content_type="text/markdown",
long_description=readme,
project_urls={"Source": "https://github.com/conda-incubator/grayskull"},
)