-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (37 loc) · 1.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
import os
import runpy
from setuptools import setup
pkg_name = 'didauth'
meta = runpy.run_path("./{}/version.py".format(pkg_name))
version = meta['__version__']
setup(
name=pkg_name,
packages=[
pkg_name,
'{}.algo'.format(pkg_name),
'{}.ext'.format(pkg_name),
],
version=version,
description='DID authentication support',
license='MIT',
author='PSPC-SPAC',
author_email='andrew@1crm.com',
url='https://github.com/PSPC-SPAC-buyandsell/{}'.format(pkg_name),
download_url='https://github.com/PSPC-SPAC-buyandsell/{}/archive/v{}.tar.gz'.format(pkg_name, version),
keywords=['verified-organizations-network', 'VON', 'SRI', 'DID', 'TheOrgBook', 'Hyperledger', 'Indy', 'HTTP'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.5.3',
install_requires=[
'base58',
'multidict',
'libnacl',
],
)