forked from tctianchi/pyvenn
-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
39 lines (36 loc) · 1.22 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
import setuptools
from argparse import Namespace
from subprocess import Popen, PIPE
from re import sub
meta = Namespace(
__name__ = "venn",
__version__ = "0.1.2",
__author__ = "Kirill Grigorev",
__git_id__ = "LankyCyril",
__license__ = "GPLv3",
)
def get_readme(filename):
with open(filename) as readme_handle:
return readme_handle.read()
if __name__ == "__main__":
setuptools.setup(
name = meta.__name__,
version = meta.__version__,
packages = [meta.__name__],
url = "https://pypi.org/project/venn/",
author = meta.__author__,
license = meta.__license__,
zip_safe = True,
description = "Venn diagrams for 2, 3, 4, 5, 6 sets",
long_description = get_readme("README.md"),
long_description_content_type = "text/markdown",
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization"
],
install_requires = ["matplotlib"]
)