-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (34 loc) · 1.04 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
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="contrib",
version="0.3.0",
author="Todd Gamblin",
author_email="[email protected]",
description=(
"A python package for making stacked area plots of contributions over time."
),
url="https://github.com/spack/contrib",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache-2.0 OR MIT",
classifiers=["Development Status :: 3 - Alpha"],
keywords="",
packages=setuptools.find_packages(),
python_requires=">=3.6",
scripts=["bin/contrib"],
install_requires=[
"python-dateutil",
"jsonschema",
"matplotlib",
"pyyaml",
"setuptools",
],
)