forked from mamba-org/quetz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 866 Bytes
/
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
import os
import setuptools
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, 'quetz', '_version.py')) as f:
exec(f.read(), {}, version_ns)
setuptools.setup(
name="quetz",
version=version_ns['__version__'],
author="The Quetz Development Team",
description="The Mamba package server",
long_description="The Mamba package server",
url="https://github.com/mamba-org/quetz",
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.7',
extras_require={
'dev': [
'black',
'flake8',
'isort',
'pre-commit',
'pytest',
'pytest-asyncio',
'pytest-mock',
'pytest-cov',
]
},
entry_points={'console_scripts': ['quetz = quetz.cli:app']},
)