forked from conda/grayskull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (65 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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",
"conda-grayskull = grayskull.__main__:main",
"conda-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/*.*",
"licence/licence_cache.json",
]
},
include_package_data=True,
python_requires=">=3.8",
install_requires=[
"requests",
"ruamel.yaml >=0.16.10",
"ruamel.yaml.jinja2",
"stdlib-list",
"pip",
"setuptools >=30.3.0",
"rapidfuzz >=1.7.1",
"progressbar2 >=3.53.0",
"colorama",
"conda-souschef >=2.2.3",
"pkginfo",
"packaging >=21.3",
"tomli",
"tomli-w",
],
extras_require={
"testing": [
"pytest",
"mock",
"pytest-cov",
"pytest-console-scripts",
"pytest-mock",
"setuptools-scm",
]
},
url="https://github.com/conda-incubator/grayskull",
license="MIT",
author="Marcelo Duarte Trevisani",
author_email="marceloduartetrevisani@gmail.com",
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"},
)