Skip to content

Commit 75f9b94

Browse files
committed
Simplify setup.py
1 parent 231d58d commit 75f9b94

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

setup.py

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
from setuptools import find_packages, setup
1+
from setuptools import setup
22

3-
with open("Readme.md") as file:
4-
long_description = file.read()
5-
6-
with open("LICENSE") as f:
7-
license = f.read()
8-
9-
setup(
10-
name="matplotlib-label-lines",
11-
version="0.4.0",
12-
description="Label lines in matplotlib.",
13-
long_description=long_description,
14-
long_description_content_type="text/markdown",
15-
author="Corentin Cadiou",
16-
author_email="[email protected]",
17-
url="https://github.com/cphyc/matplotlib-label-lines",
18-
license="MIT",
19-
packages=find_packages(exclude=("tests", "docs")),
20-
install_requires=["numpy", "matplotlib"],
21-
include_package_data=True,
22-
)
3+
setup()

0 commit comments

Comments
 (0)