forked from cphyc/matplotlib-label-lines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 690 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 690 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('Readme.md') as file:
long_description = file.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='matplotlib-label-lines',
version='0.3.8',
description='Label lines in matplotlib.',
long_description = long_description,
long_description_content_type='text/markdown',
author='Corentin Cadiou',
author_email='contact@cphyc.me',
url='https://github.com/cphyc/matplotlib-label-lines',
license='MIT',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=[
'numpy',
'matplotlib'
],
include_package_data=True
)