forked from 0xmercury/osmo_trade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 852 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
29
30
from setuptools import setup
with open("README.md", "r") as f:
readme = f.read()
setup(
name='osmo_trade',
version='0.1.1',
description='SDK to trade on osmosis DEX',
url='https://github.com/staking-explorer/osmo_trade_se',
long_description= readme,
long_description_content_type="text/markdown",
author='0xmercury',
author_email='osmocosmo2@gmail.com',
license='Apache License 2.0',
packages=['osmo_trade', 'osmo_trade._pools'],
package_data = {
'': ['_pools/']
},
classifiers=[
"Intended Audience :: Developers",
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
],
project_urls={
"Source": "https://github.com/staking-explorer/osmo_trade_se",
}
)