-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
24 lines (21 loc) · 827 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = "Django JsConnect",
version = "0.1",
packages = ['jsConnectDjango', 'jsConnectDjango.helpers'],
include_package_data = True,
author = "Aaron O'Mullane",
author_email = "aaron.omullan@gmail.com",
description = "Authentification bridge between a Django website and VanillaForums",
license = "Apache",
keywords = "python django authentication vanilla forums jsconnect",
url = "https://github.com/AaronO/jsConnectDjango",
install_requires = [],
classifiers = [
'Development Status :: 0.2 - Beta Testing',
'Environment :: Unix-like Systems',
'Intended Audience :: Developers, Project managers, Sys admins',
'Programming Language :: Python',
'Operating System :: Unix-like',
],
)