forked from konstantint/matplotlib-venn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1f2030
commit f87c71d
Showing
9 changed files
with
24 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright (c) 2012, Konstantin Tretyakov | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include README.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[egg_info] | ||
tag_build = dev | ||
tag_svn_revision = true | ||
tag_build = | ||
tag_svn_revision = false | ||
|
||
[pytest] | ||
addopts = --ignore=setup.py --doctest-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Copyright 2012, Konstantin Tretyakov. | ||
http://kt.era.ee/ | ||
Licensed under BSD. | ||
Licensed under MIT license. | ||
''' | ||
|
||
from setuptools import setup, find_packages | ||
|
@@ -26,29 +26,28 @@ def run_tests(self): | |
|
||
setup(name='matplotlib-venn', | ||
version=version, | ||
description="Methods for generating area-proportional 2- and 3-way venn diagrams.", | ||
long_description="""Methods for generating area-proportional 2- and 3-way venn diagrams.""", | ||
description="Functions for drawing area-proportional 3-way venn diagrams in matplotlib.", | ||
long_description=open("README.rst").read(), | ||
classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
'Development Status :: 2 - Pre-Alpha', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: BSD License', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2', | ||
'Topic :: Scientific/Engineering :: Visualization' | ||
], | ||
keywords='matplotlib plotting venn diagrams', | ||
platforms=['Platform Independent'], | ||
keywords='matplotlib plotting charts venn-diagrams', | ||
author='Konstantin Tretyakov', | ||
author_email='[email protected]', | ||
url='http://kt.era.ee/', | ||
license='BSD', | ||
url='https://github.com/konstantint/matplotlib-venn', | ||
license='MIT', | ||
namespace_packages = ['matplotlib'], | ||
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | ||
include_package_data=True, | ||
zip_safe=True, | ||
install_requires=['matplotlib', 'numpy', 'scipy'], | ||
tests_require=['pytest'], | ||
cmdclass = {'test': PyTest}, | ||
entry_points=""" | ||
# -*- Entry points: -*- | ||
""", | ||
entry_points='' | ||
) |