-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 997 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 997 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
28
29
30
31
32
33
from setuptools import setup, find_packages
setup(
name="sup",
version="0.1.0",
author="Anders Kvellestad",
author_email="anders.kvellestad@fys.uio.no",
description="A command-line tool for generating 1D and 2D unicode plots in the terminal.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(where=".", include=["sup", "sup.*"]),
install_requires=[
"numpy",
"scipy",
],
extras_require={
"h5py": ["h5py"],
},
entry_points={
"console_scripts": [
"sup = sup.sup:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Environment :: Console",
],
python_requires=">=3.6",
license="GPLv3+",
)