-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 820 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (23 loc) · 820 Bytes
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
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
with open("requirements.txt") as fin:
REQUIRED_PACKAGES = fin.read()
setuptools.setup(
name="vdldraw",
version="0.1.7",
author="geoyee",
author_email="geoyee@yeah.net",
description="Batch plot the log files exported from VisualDL using Matplotlib.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/geoyee/VDLdraw",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=REQUIRED_PACKAGES,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License"
],
)