-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (31 loc) · 1.1 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 setup, find_namespace_packages
with open('./README.md') as readme:
long_description = readme.read()
setup(
name='pyperp',
packages=find_namespace_packages(include=['pyperp.*']),
version='2.0.0',
license='MIT',
description='python SDK for Perpetual Protocol',
long_description_content_type='text/markdown',
long_description=long_description,
author='Naveen Veluswamy',
author_email='[email protected]',
url='https://github.com/DeveloperInProgress/PyPerp',
keywords=['perp', 'perpetual protocol', 'defi'],
install_requires=[
'web3>=5.24.0',
'datetime>=4.3'
],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)