-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (29 loc) · 857 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
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
setup(
name='powerio',
version='1.0.0',
packages=['powerio'],
url='https://thepower.io',
license='MIT',
author='',
author_email='',
description='PowerIO API.',
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
# Python versions supported.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
# project_urls={
# 'Sources': '',
# 'Bug Reports': '',
# },
install_requires=['msgpack', 'ecdsa', 'requests'],
)