-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
53 lines (48 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
VERSION = '0.1.3'
DESCRIPTION = "A Python Steem and Hive Account Recovery CLI"
def create_version_file(filename):
content = "# This file is generated from setup.py.\nVERSION = '%s'\n" % \
(VERSION)
with open(filename, 'w') as f:
f.write(content)
if __name__ == "__main__":
create_version_file("steemrecovery/version.py")
setup(
name='steemrecovery',
version=VERSION,
description=DESCRIPTION,
long_description=DESCRIPTION,
author='crokkon',
author_email='[email protected]',
maintainer='crokkon',
maintainer_email='[email protected]',
url='https://github.com/crokkon/steemrecovery',
keywords=['steem', 'hive', 'recovery', 'blockchain'],
packages=[
"steemrecovery",
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial',
],
install_requires=[
'beem >= 0.24.9',
],
entry_points={
'console_scripts': [
'steemrecovery=steemrecovery.steemrecovery:cli',
],
},
include_package_data=True,
)