-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.5 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.5 KB
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
39
40
41
42
43
44
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='BalancerPy',
version='1.0.5',
description='Balancer Analytics with Python',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/defipy-devs/balancerpy',
author = "icmoore",
author_email = "defipy.devs@gmail.com",
license="Apache-2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
package_dir = {"balancerpy": "python/prod"},
packages=[
'balancerpy',
'balancerpy.cwpt.exchg',
'balancerpy.cwpt.exchg.result',
'balancerpy.cwpt.factory',
'balancerpy.erc',
'balancerpy.vault',
'balancerpy.quote',
'balancerpy.constants',
'balancerpy.utils.interfaces',
'balancerpy.utils.data',
'balancerpy.process.liquidity',
'balancerpy.process.swap',
'balancerpy.process.join',
'balancerpy.enums'
],
install_requires=[
'uniswappy >= 1.7.4'
],
zip_safe=False)