-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
28 lines (27 loc) · 840 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
from setuptools import setup, find_packages
setup(
name='pydataxm',
version='0.3.14',
packages=find_packages(),
license='MIT',
description='Interface to interact with API XM and API SIMEM',
author='Equipo Analitica XM',
author_email='analitica@xm.com.co',
url='https://github.com/EquipoAnaliticaXM/API_XM',
download_url='https://raw.githubusercontent.com/EquipoAnaliticaXM/API_XM/master/pydataxm/pydataxm.py',
python_requires='>=3.10',
install_requires=[
'pandas>=2.0.0',
'numpy',
'requests',
'aiohttp',
'asyncio',
'nest_asyncio'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)