-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
67 lines (55 loc) · 1.86 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
61
62
63
64
65
66
67
import io
import os
import re
from setuptools import setup, find_namespace_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'src', 'sparc', 'curation', 'tools', '__init__.py')) as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
if not version:
raise RuntimeError('Cannot find version information')
def readfile(filename, split=False):
with io.open(filename, encoding="utf-8") as stream:
if split:
return stream.read().split("\n")
return stream.read()
readme = readfile("README.rst", split=True)
readme.append('License')
readme.append('=======')
readme.append('')
readme.append('::')
readme.append('')
readme.append('')
software_licence = readfile("LICENSE", True)
software_licence = '\n '.join(software_licence)
requires = ['pandas', 'openpyxl', 'tabulate', 'plotly', 'kaleido != 0.2.1']
extras_require = {
'test': [
'dulwich'
]
}
setup(
name='sparc-curation-tools',
version=version,
description='A collection of tools to help with curating SPARC datasets.',
long_description='\n'.join(readme) + software_licence,
long_description_content_type='text/x-rst',
classifiers=[],
author='Hugh Sorby',
author_email='[email protected]',
url='https://github.com/ABI-Software/sparc-curation-tools.git',
license='Apache Software License',
license_files=("LICENSE",),
packages=find_namespace_packages("src"),
package_dir={"": "src"},
entry_points={
"console_scripts": [
"scaffold-annotations = sparc.curation.tools.scaffold_annotations:main",
"plot-annotation = sparc.curation.tools.plot_annotations:main"
]
},
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require=extras_require,
)