-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.39 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.39 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
45
46
47
from setuptools import setup, find_packages
LONG_DESCRIPTION = open("README.md", "r").read()
REQUIREMENTS = [
"eth-account>=0.4.0",
"pytest>=7.2.2",
"pytest-mock>=3.0.0",
"requests-mock>=1.6.0",
"requests>=2.22.0",
"setuptools>=50.3.2",
"tox==3.25.0",
"web3>=6.0.0",
"dateparser>=1.0.0",
"nest-asyncio>=1.5.6",
"pytest-asyncio>=0.21.0",
]
setup(
name="lighter-v1-python",
version="1.0.3",
packages=find_packages(),
package_data={
"lighter": [
"abi/*.json",
],
},
description="lighter Python rest api and blockchain interactions for Limit Orders",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/elliottech/lighter-v1-python",
author="Elliot",
license="Apache 2.0",
author_email="ahmet@elliot.ai",
install_requires=REQUIREMENTS,
keywords="lighter exchange rest api defi ethereum optimism l2 eth",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)