-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (47 loc) · 1.36 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
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'setuptools',
'matplotlib',
'seaborn',
'numpy',
'jupyter',
'notebook',
'pandas',
'svgutils',
# 'cairosvg',
# 'wand',
'click',
'pillow'
]
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest']
setup(
name='figure_panel',
version='0.0.1',
author="M. Hasan Çelik",
author_email='muhammedhasancelik@gmail.com',
url='https://github.com/muhammedhasan/figure_paper',
keywords=['figure panel', 'plotting', 'publication'],
description="Create publication ready figure panels from svg files.",
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
license="MIT license",
long_description=readme + '\n',
long_description_content_type='text/markdown',
install_requires=requirements,
setup_requires=setup_requirements,
entry_points='''
[console_scripts]
figure_panel=figure_panel.main:cli_figure_panel
''',
packages=find_packages(include=['figure_panel', 'figure_panel.*']),
include_package_data=True,
test_suite='tests',
tests_require=test_requirements,
)