forked from Islandora-Labs/Islandora-eBadges-Repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.13 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
__author__ = ",".join([ "Jeremy Nelson", "Mike Stabile"])
__license__ = "GPLv3"
__version_info__ = ('0', '8', '0')
__version__ = '.'.join(__version_info__)
from setuptools import find_packages, setup
setup(
name='rdfframework',
version= __version__,
author=__author__,
author_email= ','.join(['[email protected]',
'[email protected]']),
description="RDFFramework for issuing OpenBadges",
long_description="",
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
'flask',
'rdflib',
'requests'
],
classifiers=[
'Framework :: Flask',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
]
)