-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
32 lines (29 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
from setuptools import setup, find_packages
import urlcrypt
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-urlcrypt",
version = urlcrypt.__version__,
description = 'Encrypts information in urls, such as login credentials. Useful if you want to send a user a link that logs the user in without leaking their login credentials.',
long_description = README,
url = 'http://github.com/dziegler/django-urlcrypt',
author = 'David Ziegler',
author_email = 'david.ziegler@gmail.com',
license = 'BSD',
zip_safe = False,
packages = find_packages(),
include_package_data = True,
package_data = {'urlcrypt': ['test/test_private_key']},
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)