-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (31 loc) · 1.07 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
sys.path.insert(0, 'src')
from setuptools import setup
setup(
name='pyptlib',
version='0.1',
description='A python implementation of the Pluggable Transports for Circumvention specification for Tor'
,
long_description='A python implementation of the Pluggable Transports for Circumvention specification for Tor'
,
author='Brandon Wiley',
author_email='[email protected]',
url='http://stepthreeprivacy.org/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='cryptography privacy internet',
license='BSD',
package_dir={'pyptlib': 'src/pyptlib'},
packages=['pyptlib'],
)