-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (45 loc) · 1.69 KB
/
setup.py
File metadata and controls
executable file
·50 lines (45 loc) · 1.69 KB
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
#!/usr/bin/env python3
from distutils.core import setup
version = '0.4.2'
dependencies = [
'ecdsa',
'pycrypto',
'pypng'
]
setup(
name = 'openbadgeslib',
packages = ['openbadgeslib'], # this must be the same as the name above
version = version,
description = 'A library to sign and verify OpenBadges',
long_description = ('A library to sign and verify OpenBadges. If you need more info, here is our '
'`Homepage <https://openbadges.luisgf.es/>`_ and the '
'`contact email <openbadges@luisgf.es>`_.'
),
author = 'Luis González Fernández, Jesús Cea Avión',
author_email = 'luisgf@luisgf.es, jcea@jcea.es',
url = 'https://openbadges.luisgf.es/',
keywords = ['openbadges'], # arbitrary keywords
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: English',
'Natural Language :: Spanish',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)'
],
license = 'LGPLv3',
install_requires = dependencies,
include_package_data = True,
entry_points = {
'console_scripts': [
'openbadges-init = openbadgeslib.openbadges_init:main',
'openbadges-keygenerator = openbadgeslib.openbadges_keygenerator:main',
'openbadges-signer = openbadgeslib.openbadges_signer:main',
'openbadges-verifier = openbadgeslib.openbadges_verifier:main',
'openbadges-publish = openbadgeslib.openbadges_publish:main'
]
}
)