-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
35 lines (33 loc) · 1.08 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
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='pymatriz',
version='0.1.4',
packages=['pymatriz'],
url='https://github.com/ggallohernandez/pymatriz',
license='MIT License',
author='Guillermo Gallo',
author_email='[email protected]',
description='Python connector for Primary DMA (Matriz) Rest and Websocket APIs.',
long_description=long_description,
long_description_content_type="text/x-rst",
install_requires=[
'requests',
'simplejson',
'websocket-client',
'pandas',
'lxml',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development"
],
)