-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
31 lines (30 loc) · 958 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
25
26
27
28
29
30
31
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='yawd-admin',
url='http://yawd.eu/open-source-projects/yawd-admin/',
version = '0.7.1-rc1',
description='An administration website for Django',
long_description=open('README.rst', 'rt').read(),
author='yawd',
author_email='[email protected]',
packages=find_packages(),
license='BSD',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
],
include_package_data = True,
install_requires = [
"httplib2",
"django >= 1.5",
"oauth2client"
],
zip_safe=False
)