-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (36 loc) · 1.22 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
import re
import os
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("plotcritic/__init__.py", "r") as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
with open("requirements.txt", "r") as f:
requires = f.read().splitlines()
setup(
name="plotcritic",
version=version,
description="scalable html-based curation tool for data images",
long_description=long_description,
long_description_content_type='text/markdown',
author="Jonathan Belyeu",
author_email="jrbelyeu@gmail.com",
url="https://github.com/jbelyeu/PlotCritic.git",
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
package_data={"plotcritic": ["LICENSE", "README.md", "templates/*", "templates/*/*"]},
install_requires=requires,
license="MIT",
zip_safe=False,
entry_points={
'console_scripts': [
'plotcritic = plotcritic.__main__:main'
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)