-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (33 loc) · 1.17 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
import setuptools
import versioneer
from pathlib import Path
# Extract information from the README file and embed it in the package.
readme_path = Path(__file__).absolute().parent / "README.md"
with open(readme_path, "r") as fh:
long_description = fh.read()
setuptools.setup(
author="Magnus Aagaard Sørensen",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
cmdclass=versioneer.get_cmdclass(),
description="Utilities to list log files generated by CANedge loggers",
install_requires=[
"fsspec",
"mdf_iter",
],
long_description=long_description,
long_description_content_type="text/markdown",
name="canedge_browser",
packages=setuptools.find_packages(),
python_requires='>=3.5',
url="https://github.com/CSS-Electronics/canedge_browser",
version=versioneer.get_version(),
)