-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.09 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
from skbuild import setup
long_description = open('README.md').read()
setup(
name="py_cpu",
version="0.1.2",
author="Narasimha Prasanna HN",
author_email="[email protected]",
description="Python bindings for Google's cpu_features library.",
url="https://github.com/Narasimha1997/py_cpu.git",
license="Apache 2.0 License",
has_package_data=False,
package_dir={"": "src"},
packages = ["py_cpu"],
cmake_install_dir = "src/py_cpu",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Hardware',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3',
long_description = long_description,
long_description_content_type = 'text/markdown'
)