[Pkg-privacy-commits] [obfsproxy] 104/353: Add a small setup.py script.

Ximin Luo infinity0 at moszumanska.debian.org
Sat Aug 22 13:01:46 UTC 2015


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch master
in repository obfsproxy.

commit 9a2b7d5ae55882393230b259c91a5801ff361cb3
Author: George Kadianakis <desnacked at riseup.net>
Date:   Sat Jan 26 14:11:00 2013 +0200

    Add a small setup.py script.
---
 setup.py | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..7faf3e9
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+
+import sys
+
+from setuptools import setup, find_packages
+
+setup(
+    name = "pyobfsproxy",
+    version = "0.0.1",
+    author = "asn",
+    author_email = "asn at torproject.org",
+    description = ("A pluggable transport proxy written in Python"),
+    license = "BSD",
+    keywords = ['tor', 'obfuscation', 'twisted'],
+
+    packages = find_packages(),
+
+    entry_points = {
+        'console_scripts': [
+            'pyobfsproxy = obfsproxy.pyobfsproxy:run'
+            ]
+        },
+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/obfsproxy.git



More information about the Pkg-privacy-commits mailing list