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
|
from setuptools import setup, find_packages
import os
setup(
# package metadata
name='bsfs',
version='0.23.03',
author='Matthias Baumgartner',
author_email='dev@bsfs.io',
description='A content-aware graph file system.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(),
license='BSD',
license_files=('LICENSE', ),
url='https://www.bsfs.io/bsfs/',
download_url='https://pip.bsfs.io',
# packages
packages=[p for p in find_packages() if p.startswith('bsfs')],
# data files are included if mentioned in MANIFEST.in
include_package_data=True,
# entrypoints
entry_points={
'console_scripts': [
'bsfs = bsfs.apps:main',
],
},
# dependencies
install_requires=(
'rdflib', # schema and sparql storage
'hopcroftkarp', # ast matching
'numpy', # distance functions for sparql store
),
python_requires=">=3.7",
)
|