forked from koenedaele/skosprovider_oe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·47 lines (41 loc) · 1.19 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
#!/usr/bin/env python
import os
import skosprovider_oe
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'skosprovider_oe',
]
requires = [
'skosprovider>=0.4.0',
'requests>=1.0.0'
]
setup(
name='skosprovider_oe',
version='0.4.0',
description='A SKOS provider for OE vocabularies.',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
author='Koen Van Daele',
author_email='[email protected]',
url='http://github.com/koenedaele/skosprovider_oe',
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'skosprovider_oe': 'skosprovider_oe'},
include_package_data=True,
install_requires = requires,
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
)