-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
43 lines (39 loc) · 1.5 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
43
from setuptools import setup, find_packages
from iconsdk.version import __version__
with open("README.md", 'r') as f:
long_description = f.read()
with open("requirements.txt") as requirements:
requires = list(requirements)
extras_requires = {
'tests': ['pytest~=7.2.1']
}
setup(
name='iconsdk',
version=__version__,
description='ICON SDK for Python is a collection of libraries which allow you to interact '
'with a local or remote ICON node using an HTTP connection.',
long_description=long_description,
long_description_content_type='text/markdown',
author='ICON Foundation',
author_email='foo@icon.foundation',
url='https://github.com/icon-project/icon-sdk-python',
packages=find_packages(exclude=['tests*']),
install_requires=requires,
extras_require=extras_requires,
python_requires='>=3.7',
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
]
)