-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
33 lines (29 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from distutils.core import setup
#import __version__
execfile('src/minimalkb/__init__.py')
def readme():
with open('README.md') as f:
return f.read()
setup(name='minimalKB',
version=__version__,
license='BSD',
description='A SQLite-backed minimalistic knowledge based for robotic application. Mostly KB-API conformant.',
long_description=readme(),
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
author='Séverin Lemaignan',
author_email='[email protected]',
url='https://github.com/severin-lemaignan/minimalkb',
requires=['pysqlite', 'rdflib'],
package_dir = {'': 'src'},
packages=['minimalkb', 'minimalkb/backends', 'minimalkb/services'],
scripts=['bin/minimalkb'],
data_files=[('share/ontologies', ['share/ontologies/' + f for f in os.listdir('share/ontologies')]),
('share/doc/minimalkb', ['LICENSE', 'README.md']),
]
)