-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 777 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 777 Bytes
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
#!/usr/bin/env python
from setuptools import (
setup,
find_packages
)
from pathlib import Path
version = {}
version_path = Path('attps/version.py').resolve()
with open(version_path) as f:
exec(f.read(), version)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='attps-sdk',
version=version['__version__'],
author='APRO',
author_email='apro@apro.com',
description='ATTPs sdk for APRO',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/APRO-com/ATTPs-sdk-python',
packages=find_packages(),
install_requires=[
'web3 > 7.0.0',
'python_dotenv >= 1.0.1',
'pytest >= 8.0.0'
],
python_requires='>=3.7, <4',
)