-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1.1 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
readme = f.read()
setup(
name='Herostatus',
version='0.3.2',
description='Herominers console status and stats display for cryptonight miners',
long_description=readme,
long_description_content_type="text/markdown",
author='freQniK',
author_email='[email protected]',
url='https://github.com/freqnik/herostatus',
license='GPLv3',
keywords='crypto cryptonight zephyr bitcoin monero haven dero ergo blockchain mining randomx',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
include_package_data=True,
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=['requests', 'pygame'],
package_data={'herostatus': ['logo.uni'], 'herostatus/sounds' : ['burglaralarm.wav', 'caralarm.wav', 'hiphopalarm.wav', 'sirenalarm.wav', 'strongbadalarm.wav']},
entry_points = {
'console_scripts': ['herostatus = herostatus.herostatus:main'],
}
)