-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (30 loc) · 1 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
import os
from setuptools import setup, find_packages
version=__import__('django_pyres').__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-pyres',
version=version,
description='django pyres integration',
long_description=read('README.txt'),
author='Matt George',
author_email='mgeorge@gmail.com',
maintainer='Matt George',
license='BSD',
url='http://github.com/Pyres/django_pyres',
packages=find_packages(exclude=['ez_setup', 'example','testapp','tests']),
package_data={'': ['README.txt']},
include_package_data=True,
install_requires=[
'pyres>=1.4.1',
'django-appconf>=0.5'
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)