-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 1.08 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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup, find_packages
from setuptools.command import sdist
setup(
name='weblyzard_api',
version='3.0.0-dev',
description=' Web services for weblyzard',
author='Albert Weichselbraun, Heinz-Peter Lang, Max Göbel and Philipp Kuntschik',
author_email='weichselbraun@weblyzard.com',
packages=find_packages('src/python'),
package_dir={'': 'src/python'},
install_requires=['future',
'nose',
'lxml',
'requests[security]>=2.13,<3',
'pytest',
'sparqlwrapper'],
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only'],
zip_safe=False,
include_package_data=True,
scripts=['src/python/weblyzard_api/client/openrdf/wl_upload_repository.py', ]
)