-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (48 loc) · 1.67 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
from setuptools import setup, find_packages
import os
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
setup(
name='arborist',
version="0.5",
packages=find_packages(),
author="BONSAI team",
author_email="[email protected]",
license=open('LICENSE').read(),
package_data={'arborist': package_files(os.path.join('arborist', 'data'))},
entry_points = {
'console_scripts': [
'arborist-cli = arborist.bin.arborist_cli:main',
]
},
install_requires=[
'docopt',
'pandas',
'rdflib',
'xlrd',
],
url="https://github.com/BONSAMURAIS/arborist",
long_description=open('README.md').read(),
description="Generate the URIs needed for the BONSAI knowledge graph",
classifiers=[
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
],
)