forked from alchemyplatform/alchemy-sdk-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.2 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
from setuptools import setup, find_packages
import os
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'alchemy', '__version__.py'), 'r') as f:
exec(f.read(), about)
with open(os.path.join(here, 'README.md'), 'r') as f:
readme = f.read()
setup(
name=about['__title__'],
packages=find_packages(exclude=['tests', 'tests.*', 'docs', 'docs.*']),
author=about['__author__'],
version=about['__version__'],
license=about['__license__'],
install_requires=[
'web3',
'requests',
'backoff',
'typing-extensions',
'dataclass-wizard',
],
python_requires='>=3.7',
url='https://github.com/alchemyplatform/alchemy-sdk-py',
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)