Add setup.py
authorLowe Thiderman <redacted>
Tue, 27 May 2014 21:51:00 +0000 (23:51 +0200)
committerLowe Thiderman <redacted>
Tue, 27 May 2014 21:51:00 +0000 (23:51 +0200)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..826afd8
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,30 @@
+from setuptools import setup
+
+
+setup(
+    name='xkcdpass',
+    version='1.0',
+    author='Steven Tobin',
+    author_email='steventtobin@gmail.com',
+    url='https://github.com/redacted/XKCD-password-generator',
+    description='Generate secure multiword passwords/passphrases, inspired by XKCD',
+    long_description=open('README.mkd').read(),
+    package_dir={'': 'xkcdpass'},
+    packages=['xkcdpass'],
+    zip_safe=False,
+    license='BSD',
+    include_package_data=True,
+    entry_points={
+        'console_scripts': [
+            'xkcdpass = xkcdpass.xkcd_password:main',
+        ],
+    },
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 3',
+        'Environment :: Console',
+        'Operating System :: OS Independent',
+        'License :: OSI Approved :: BSD License',
+    ],
+)
git clone https://git.99rst.org/PROJECT