-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1019 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
import setuptools
import os
_here = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
version = {}
with open(os.path.join(_here, 'nice_figures', 'version.py')) as f:
exec(f.read(), version)
setuptools.setup(
name="nice-figures",
version=version['__version__'],
author="Rob Bettles",
author_email="rjbcoding@gmail.com",
description="Methods and style files for making publication quality figures",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Rob217/nice-figures",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'matplotlib',
'numpy'
],
python_requires='>=3.6',
include_package_data=True,
package_data={'' : [os.path.join('data', '*.json')]},
)