-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
26 lines (24 loc) · 868 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="mplcolors",
description="CLI and package to manipulate and display matplotlib colors",
long_description=long_description,
url="https://github.com/AstroBarker/mplcolors",
author="Brandon L. Barker",
author_email="[email protected]",
license="GPL-3.0",
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Science/Research/DevOps",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10"
],
keywords="simulations science computing githubapp visualization cli",
packages=find_packages(),
install_requires=["matplotlib", "argparse"],
)