This repository was archived by the owner on Sep 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (58 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: latin-1 -*-
import codecs
import re
import os
from setuptools import setup
def open_local(paths, mode='r', encoding='utf8'):
path = os.path.join(
os.path.abspath(os.path.dirname(__file__)),
*paths
)
return codecs.open(path, mode, encoding)
with open_local(['pyldapi', '__init__.py'], encoding='latin1') as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'\r?$",
fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to determine version.')
with open_local(['README.md']) as readme:
long_description = readme.read()
with open_local(['requirements.txt']) as req:
install_requires = req.read().split("\n")
setup(
name='pyldapi',
packages=['pyldapi'],
version=version,
description='A very small module to add Linked Data API functionality to '
'a Python Flask installation',
author='Nicholas Car',
author_email='[email protected]',
url='https://github.com/CSIRO-enviro-informatics/pyldapi',
download_url='https://github.com/CSIRO-enviro-informatics/'
'pyldapi/archive/v{:s}.tar.gz'.format(version),
license='LICENSE.txt',
keywords=['Linked Data', 'Semantic Web', 'Flask', 'Python', 'API', 'RDF'],
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
project_urls={
'Bug Reports':
'https://github.com/CSIRO-enviro-informatics/pyldapi/issues',
'Source': 'https://github.com/CSIRO-enviro-informatics/pyldapi/',
},
install_requires=install_requires,
)