-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 872 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
packages= [
'noiseprotocol',
'noiseprotocol.crypto',
]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
]
setup(
name='noiseprotocol',
description='Python implementation of Noise Protocol Specification',
author='Naveen Nathan',
author_email='noise@t.lastninja.net',
license='BSD',
url='http://github.com/nnathan/noiseprotocol',
classifiers=classifiers,
packages=packages,
)