forked from aibasel/lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.44 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
from lab import __version__ as version
with open("README.rst") as f1, open("INSTALL.rst") as f2:
long_description = f1.read() + "\n\n" + f2.read()
setup(
name="lab",
version=version.rstrip("+"),
description="Benchmark your code",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords="benchmarks cluster grid",
author="Jendrik Seipp",
author_email="[email protected]",
url="https://github.com/aibasel/lab",
license="GPL3+",
packages=find_packages("."),
package_data={"lab": ["data/*", "scripts/*.py"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
],
install_requires=[
"matplotlib", # for scatter plots
"simplejson", # optional, speeds up reading properties files
"txt2tags>=3.6", # for HTML and Latex reports
],
python_requires=">=3.7",
)