-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (16 loc) · 882 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import find_packages, setup
with open("README.md", "r") as f_readme:
long_description = f_readme.read()
setup(
name = "mATLASplotlib",
version = "1.1.0",
description = "Wrappers around matplotlib functionality to produce plots compatible with the style guidelines for the ATLAS experiment at the LHC",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/jemrobinson/mATLASplotlib",
author = "James Robinson",
author_email = "james.em.robinson@gmail.com",
license = "GPLv3",
install_requires = ["matplotlib", "numpy", "scipy"],
packages = find_packages(),
)