forked from OnroerendErfgoed/pyramid_skosprovider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.42 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'HISTORY.rst')).read()
requires = [
'pyramid',
'skosprovider>=0.6.0'
]
tests_requires = [
'pytest',
'pytest-cov',
'webtest'
]
testing_extras = tests_requires + []
setup(
name='pyramid_skosprovider',
version='0.7.1',
license='MIT',
description='Integration of skosprovider in pyramid',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Pyramid',
],
author='Koen Van Daele',
author_email='[email protected]',
url='https://github.com/koenedaele/pyramid_skosprovider',
keywords='pyramid skos skosprovider thesauri vocabularies',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=tests_requires,
extras_require={
'testing': testing_extras
},
)