-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
48
"""Install scimorph.
This script (setup.py) will install the scimorph package.
In order to expose .mplstyle files to matplotlib, "import scimorph"
must be called before theme_publication(...).
"""
import os
from setuptools import setup
# Get description from README
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, 'README.md'), 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='scimorph',
version='1.0.3',
author="Haihui Zhang",
author_email="[email protected]",
maintainer="Haihui Zhang",
maintainer_email="[email protected]",
description="Scientific theme of Matplotlib for publication ",
long_description=long_description,
long_description_content_type='text/markdown',
license="BSD 3-Clause License",
url="https://github.com/haihuilab/scimorph/",
install_requires=['matplotlib'],
packages=["scimorph"],
package_data={
'scimorph': ['styles/**/*.mplstyle'],
},
classifiers=[
'Framework :: Matplotlib',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
],
keywords=[
"matplotlib-style-sheets",
"matplotlib-figures",
"scientific-papers",
"thesis-template",
"matplotlib-styles",
"python"
],
)