forked from askomics/flaskomics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 888 Bytes
/
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name='askomics',
version='3.2.9',
description='''
AskOmics is a visual SPARQL query interface supporting both intuitive
data integration and querying while shielding the user from most of the
technical difficulties underlying RDF and SPARQL
''',
classifiers=[
"Programming Language :: Python",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
maintainer='Xavier Garnier',
maintainer_email='[email protected]',
url='https://github.com/askomics/flaskomics',
keyword='rdf sparql query data integration',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
)