-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (38 loc) · 1.15 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
from setuptools import setup
setup(
setup_requires=["setuptools_scm"],
use_scm_version=True,
name="metapkg",
description="Cross-Platform Meta Packaging System",
author="MagicStack Inc.",
author_email="[email protected]",
packages=["metapkg"],
include_package_data=True,
entry_points={
"console_scripts": [
"metapkg = metapkg.app:main",
]
},
python_requires=">=3.9",
install_requires=[
"build~=1.2.1",
"distro~=1.9.0",
"requests~=2.31.0",
"poetry~=1.2.0",
# Poetry <1.5.0 is not compatible with setuptools>=70.2.0
# See https://github.com/pypa/setuptools/pull/4434
"setuptools<70.2.0",
"distlib~=0.3.8",
'python-magic~=0.4.26; platform_system=="Linux" or (platform_machine!="x86_64" and platform_machine!="AMD64")',
'python-magic-bin~=0.4.14; platform_system!="Linux" and platform_machine!="arm64"',
"wheel>=0.32.3",
"setuptools-rust>=0.11.4",
"tomli>=1.2",
],
extras_require={
"test": [
"typing-extensions~=4.0",
"types-requests~=2.31.0.2",
]
},
)