-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
28 lines (25 loc) · 862 Bytes
/
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
from os.path import join, dirname
from setuptools import setup, find_packages
from dexguru_sdk.sdk import __version__
setup(
name='dexguru-sdk',
version=__version__,
url='https://dex.guru',
packages=find_packages(),
license='MIT License',
long_description_content_type='text/markdown',
long_description=open(join(dirname(__file__), 'README.md')).read(),
install_requires=open('requirements.txt').read(),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
test_suite='tests',
project_urls={
'Documentation': 'https://docs.dex.guru',
'GitHub': 'https://github.com/dex-guru/dg-sdk-python',
'Discord': 'https://discord.com/invite/dPW8fzwzz9',
}
)