-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (46 loc) · 1.31 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
"""
Setup for indico apis
"""
import versioneer
from pathlib import Path
from setuptools import setup, find_packages
setup(
name="indico-client",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=["tests"]),
description="""A Python Wrapper for indico app API.""",
license="MIT License (See LICENSE)",
long_description=open(Path(__file__).parent.absolute() / "README.rst").read(),
url="https://github.com/IndicoDataSolutions/indico-client-python",
author="indico",
author_email="[email protected]",
tests_require=["pytest>=5.2.1", "requests-mock>=1.8.0", "pytest-asyncio"],
install_requires=[
"requests>=2.22.0",
"setuptools>=41.4.0",
'importlib-metadata ~= 1.0 ; python_version < "3.8"',
"deprecation>=2.1.0",
"jsons",
"aiohttp[speedups]"
],
extras_require={
"all": [
"msgpack>=0.5.6",
"msgpack-numpy==0.4.4.3",
"numpy>=1.16.0",
"pandas>=1.0.3",
],
"datasets": [
"pandas>=1.0.3",
],
"deserialization": [
"msgpack>=0.5.6",
"msgpack-numpy==0.4.4.3",
"numpy>=1.16.0",
],
"exports": [
"pandas>=1.0.3",
],
}
)