-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.18 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
39
40
41
42
from setuptools import setup, find_packages
VERSION = "0.1.16"
DESCRIPTION = "Balancer Tools"
LONG_DESCRIPTION = "Balancer Maxi helper and ecosystem tools"
setup(
name="bal_tools",
version=VERSION,
author="jalbrekt85",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
include_package_data=True, # Automatically include non-Python files
package_data={
"bal_tools": [
"abi/*.json",
"graphql/**/*.gql",
"safe_tx_builder/templates/*.json",
]
},
url="https://github.com/BalancerMaxis/bal_tools",
install_requires=[
"setuptools>=42",
"wheel",
"munch==4.0.0",
"web3",
"gql[requests]",
"requests",
"pydantic==2.10.5",
],
keywords=["python", "first package"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: Linux",
],
)