-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (72 loc) · 2.32 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
68
69
70
71
72
73
74
75
76
__author__ = ",".join([ "KnowledgeLinks", "Jeremy Nelson", "Mike Stabile"])
__author_email__ = ','.join(['knowledgelinks.io@gmail.com',
'jermnelson@gmail.com',
'mstabile75@gmail.com'
])
__license__ = "GPLv3"
__version__ = "0.0.38"
from setuptools import find_packages, setup
def readme():
readme = ''
try:
with open('README.md') as rm_fo:
readme = rm_fo.read()
except FileNotFoundError:
readme = "Not set"
return readme
setup(
name='rdfframework',
version= __version__,
author=__author__,
author_email= __author_email__,
description="Application builder for KnowledgeLinks.io RDF applications.",
long_description=readme(),
keywords='RDF linked data application builder',
packages=find_packages(exclude=['tests']),
include_package_data=True,
platforms='any',
install_requires=[
'urllib3>=1.23',
'click',
'elasticsearch>6.0.0,<7.0.0',
'elasticsearch_dsl',
'Flask',
'Flask-WTF',
'isodate',
'Markdown',
'lxml',
'passlib',
'rdflib',
'requests',
'dateutils',
'beautifulsoup4',
'cssselect',
'colorama',
'jsonpath_ng'
],
classifiers=[
"Development Status :: 4 - Beta",
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Database",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Indexing",
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
],
package_data = {
'rdfframework.datamanager.vocabularies': ["*.*"],
'rdfframework.sparql.queries': ["*.rq"],
'rdfframework.turtle': ["*.ttl"]
},
url='https://github.com/KnowledgeLinks/rdfframework/tree/development',
# test_suite='nose.collector',
# tests_require=['nose', 'nose-cover3'],
zip_safe=False
)