We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231d58d commit 75f9b94Copy full SHA for 75f9b94
setup.py
@@ -1,22 +1,3 @@
1
-from setuptools import find_packages, setup
+from setuptools import setup
2
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
-)
+setup()
0 commit comments