forked from askomics/askomics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.36 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.36 KB
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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(name='Askomics',
version='18.10',
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',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
maintainer='Xavier Garnier',
maintainer_email='xavier.garnier@irisa.fr',
url='https://github.com/askomics/askomics/',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
setup_requires=['nose>=1.3'],
tests_require=['webtest', 'coverage'],
test_suite="askomics",
entry_points="""\
[paste.app_factory]
main = askomics:main
""",
)