-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (38 loc) · 1.19 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
from setuptools import setup, find_packages
VERSION = "0.9.10"
DESCRIPTION = "Balancer Maxi Addressbook"
LONG_DESCRIPTION = "Balancer Maxi Addressbook and Balancer Permissions helper"
# Setting up
setup(
name="bal_addresses",
version=VERSION,
author="The Balancer Maxis",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
include_package_data=True, # Automatically include non-Python files
package_data={"": ["abis/*.json"]},
url="https://github.com/BalancerMaxis/bal_addresses",
install_requires=[
"setuptools>=42",
"wheel",
"pathlib>=1.0",
"bal_tools @ git+https://github.com/BalancerMaxis/[email protected]",
"requests",
"pandas",
"web3",
"dotmap",
"munch==4.0.0",
"gql[requests]",
"json-fix",
],
keywords=["python", "first package"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: Linux",
],
)