-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (23 loc) · 813 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
29
30
31
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme_text = readme_file.read()
setup_args = dict(
name='crypto-cloud-py',
version='0.2',
description="Python client for CryptoCloud API",
keywords=[],
long_description=readme_text,
long_description_content_type="text/markdown",
license='Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License',
packages=find_packages(),
author="Leo Ertuna",
author_email="leo.ertuna@gmail.com",
url="https://github.com/jpleorx/crypto-cloud-py",
download_url='https://pypi.org/project/crypto-cloud-py/'
)
install_requires = [
'requests',
'pydantic',
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)