This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
49 lines (46 loc) · 1.75 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
45
46
47
48
49
import setuptools
REQUIRED_PACKAGES = [
'numpy',
'psutil',
'py-cpuinfo',
'pillow',
'setuptools',
'requests',
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ai-benchmark",
version="0.1.2",
author="Andrey Ignatov",
author_email="[email protected]",
include_package_data=True,
description="AI Benchmark is an open source python library for evaluating AI performance of various "
"hardware platforms, including CPUs, GPUs and TPUs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://ai-benchmark.com",
licence="Apache License Version 2.0",
packages=setuptools.find_packages(),
install_requires=REQUIRED_PACKAGES,
keywords="AI Benchmark Tensorflow Machine Learning Inference Training",
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Testing',
'Topic :: System :: Benchmark'
],
)