-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 977 Bytes
/
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
from setuptools import find_packages, setup
with open("sciviz/README.md", "r") as f:
long_description = f.read()
setup(
name="sciviz",
version="0.1.2",
description="A package to simplify scientific visualization",
package_dir={"": "sciviz"},
packages=find_packages(where="sciviz"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kantonopoulos/SciViz",
author="Konstantinos Antonopoulos",
author_email="[email protected]",
license="MIT",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
intall_requires=["matplotlib>=3.9.0", "numpy>=1.26.0", "pandas>=2.2.0", "seaborn>=0.13.0", "matplotlib-venn>=0.11.10"],
extras_require={
"dev": ["unittest"]
},
python_requires=">=3.10",
)