-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
27 lines (23 loc) · 853 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
from setuptools import find_packages, setup
version = "0.2.1"
with open("requirements.txt") as f:
requirements = f.read().splitlines()
info = {
"name": "rsmf",
"version": version,
"maintainer": "Johannes Jakob Meyer",
"maintainer_email": "[email protected]",
"url": "https://github.com/johannesjmeyer/rsmf",
"packages": find_packages(where="."),
"description": "rsmf (right-size my figures) helps you prepare publication-ready figures with matplotlib.",
"long_description": open("README.md").read(),
"long_description_content_type": "text/markdown",
"provides": ["rsmf"],
"install_requires": requirements,
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
],
}
setup(**(info))