-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (37 loc) · 1.24 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
from setuptools import find_packages, setup
setup(
name='deribit_wrapper',
version='0.3.3',
packages=find_packages(),
description='A Python wrapper for seamless integration with Deribit\'s trading API, offering easy access to '
'market data, account management, and trading operations.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Antonio Ventilii',
author_email='[email protected]',
license='MIT',
install_requires=[
'requests',
'numpy',
'pandas',
'urllib3',
'progressbar2',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
url='https://github.com/AntonioVentilii/deribit-wrapper',
project_urls={
'Source Code': 'https://github.com/AntonioVentilii/deribit-wrapper',
'Issue Tracker': 'https://github.com/AntonioVentilii/deribit-wrapper/issues',
},
keywords='deribit api wrapper cryptocurrency trading',
entry_points={
'console_scripts': [
# Define console scripts here if needed
],
},
)