-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (33 loc) · 1.12 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
from setuptools import setup
from hive_archeology import VERSION
setup(
name='hive-archeology-bot',
version=VERSION,
description="Hive Archeology Bot",
long_description="Simple HIVE bot that allows its owner to up-vote valuable timeless HIVE posts.",
author='Rob Meijer',
author_email='[email protected]',
url='https://github.com/pibara/hive-archeology',
license='BSD',
py_modules=['hive_archeology'],
include_package_data=True,
zip_safe=False,
python_requires='>=3.6',
entry_points={
'console_scripts': [
'hive-archeology-bot = hive_archeology:_main',
],
},
keywords='hive web3 bot',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=["lighthive", "python-dateutil"],
)