|
1 | | -#!/usr/bin/env python |
| 1 | +from setuptools import setup |
2 | 2 |
|
3 | | -from setuptools import setup, find_packages |
4 | | - |
5 | | - |
6 | | -setup( |
7 | | - name='matplotlib-inline', |
8 | | - version='0.1.0', |
9 | | - description='Inline Matplotlib backend for Jupyter', |
10 | | - author='IPython Development Team', |
11 | | - maintainer='IPython Development Team', |
12 | | - author_email='ipython-dev@scipy.org', |
13 | | - url='https://github.com/martinRenou/matplotlib-inline', |
14 | | - license='BSD 3-Clause', |
15 | | - keywords='python ipython matplotlib jupyter', |
16 | | - packages=find_packages(exclude=['test']), |
17 | | - python_requires='>=3.5', |
18 | | - install_requires=[ |
19 | | - # 'matplotlib', |
20 | | - 'traitlets', |
21 | | - 'ipython' |
22 | | - ], |
23 | | - extras_require={ |
24 | | - 'testing': ['flake8'], |
25 | | - }, |
26 | | - platforms=['any'], |
27 | | - classifiers=[ |
28 | | - 'Intended Audience :: Developers', |
29 | | - 'Operating System :: OS Independent', |
30 | | - 'Programming Language :: Python :: 3.5', |
31 | | - 'Programming Language :: Python :: 3.6', |
32 | | - 'Programming Language :: Python :: 3.7', |
33 | | - 'Programming Language :: Python :: 3.8', |
34 | | - 'Programming Language :: Python :: 3.9', |
35 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
36 | | - ], |
37 | | -) |
| 3 | +setup() |
0 commit comments