-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1000 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="vatu",
version="0.1.0",
author="Benjamin Maisonnas",
author_email="ben@wainei.net",
description="Fine-tune power and clocks on AMD Radeon RX Vega graphics cards on Linux",
long_description=readme,
license="GPLv3",
keywords="gpu",
url="https://github.com/benzhaomin/vatu",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=find_packages(exclude=("tests", "docs")),
package_data={
"vatu": ['config.default.yml'],
},
include_package_data=True,
test_suite="tests",
entry_points={
"console_scripts": ["vatu = vatu.cli:main"],
},
install_requires=[
"click",
"pyyaml",
],
extras_require={
"dev": [
"coverage",
"flake8",
"nose",
],
},
)