summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-11-14 11:40:54 -0300
committerTomás Touceda <chiiph@leap.se>2013-11-14 11:40:54 -0300
commit805a4abc7010aa66abade49caf1ba12b3bccf88a (patch)
treebb26e5515ccbcf4c8ee0209fe7bdec16ef22767a
parent17319ce9ef1c127bfd96fbcfc20b685d82f49287 (diff)
More setup.py improvementsdevelop
-rw-r--r--setup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index b936db7..994fa0d 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,8 @@
#!/usr/bin/python
# Copyright 2008 The Tor Project. See LICENSE for licensing information.
+from setuptools import setup, find_packages
+
import sys
try:
import py2exe
@@ -137,11 +139,11 @@ setup(name='Thandy',
"Thandy: Secure cross-platform update automation tool.",
author="Nick Mathewson",
author_email="nickm@freehaven.net",
- url="http://www.torproject/org",
+ url="http://www.torproject.org",
package_dir=pkg_dir,
packages=pkgs,
scripts=SCRIPTS,
- install_requires=["json", "pycrypto"],
+ install_requires=["pycrypto"],
cmdclass={'install': InstallCommand},
**extra_args
)