-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (29 loc) · 996 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
28
29
30
31
32
33
34
35
36
from setuptools import setup
from codecs import open
from os import path
current = path.abspath(path.dirname(__file__))
INSTALL_REQUIRES = [
'matplotlib>=3.5.1',
]
EXTRAS_REQUIRE = {}
with open(path.join(current, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='myforestplot',
packages=['myforestplot'],
license='MIT',
author='toshiakiasakura',
author_email='[email protected]',
url='https://toshiakiasakura.github.io/myforestplot',
description='A flexibly customizable Python tool to create a forest plot.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='forestplot odds-ratio relative-risk meta-analysis',
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Framework :: Matplotlib',
],
)