infra: setup.py

This commit is contained in:
Frédéric Péters 2013-02-11 11:06:47 +01:00
parent 660f7c42a2
commit dee85f1156
1 changed files with 17 additions and 0 deletions

17
setup.py Executable file
View File

@ -0,0 +1,17 @@
#!/usr/bin/python
from setuptools import setup, find_packages
import os
setup(name='passerelle',
version='0.1',
license='AGPLv3',
description='',
url='https://dev.entrouvert.org/projects/passerelle/',
download_url='http://repos.entrouvert.org/passerelle.git/',
author="Entr'ouvert",
author_email="info@entrouvert.com",
packages=find_packages(os.path.dirname(__file__) or '.'),
install_requires=[
'django >= 1.4.2, < 1.5',
],
)