Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
42 lines (25 loc) · 842 Bytes
/
Copy pathsetup.py
File metadata and controls
42 lines (25 loc) · 842 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
34
35
36
37
38
39
40
41
42
fromsetuptoolsimportsetup, find_packages
setup(
name='BlockSDK',
version='3.0.0',
description='BlockSDK is an API service for blockchain applications',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
license_file='LICENSE',
author='BlockChen',
author_email='bianconery@blockchen.io',
url='https://blocksdk.com',
download_url='https://github.com/Block-Chen/blocksdk-python',
install_requires= ['requests'],
packages=find_packages(exclude= []),
keywords= ['blocksdk api'],
python_requires='>=3',
package_data= {},
zip_safe=False,
classifiers= [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)