-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (38 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import find_packages, setup
import ryzen_ppd
def file(path: str):
with open(path) as f:
return f.read()
setup(
# metadata
name=ryzen_ppd.__name__,
version=ryzen_ppd.__version__,
description=ryzen_ppd.__description__,
long_description=file('README.md'),
long_description_content_type='text/markdown',
author=ryzen_ppd.__author__,
author_email=ryzen_ppd.__author_email__,
url=ryzen_ppd.__url__,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Hardware'
],
license=ryzen_ppd.__license__,
keywords=ryzen_ppd.__keywords__,
# options
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=file('requirements.txt').split(),
entry_points={
'console_scripts': [f'{ryzen_ppd.__pkgname__} = ryzen_ppd.main:main']
}
)