initial packaging

This commit is contained in:
Serghei Mihai 2015-01-17 19:30:24 +01:00
parent 6d73b9d865
commit c21aa69509
3 changed files with 69 additions and 1 deletions

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
recursive-include corbo/templates *.html
recursive-include corbo/static *.css *.otf *.eot *.svg *.ttf *.woff

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
Django==1.7
django-ckeditor
-e git+http://repos.entrouvert.org/gadjo.git/#egg=gadjo

View File

@ -1 +1,64 @@
test
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import glob
import os
import re
import subprocess
from distutils.command.sdist import sdist
from setuptools import setup, find_packages
class eo_sdist(sdist):
def run(self):
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
version_file = open('VERSION', 'w')
version_file.write(version)
version_file.close()
sdist.run(self)
if os.path.exists('VERSION'):
os.remove('VERSION')
def get_version():
if os.path.exists('VERSION'):
version_file = open('VERSION', 'r')
version = version_file.read()
version_file.close()
return version
if os.path.exists('.git'):
p = subprocess.Popen(['git', 'describe', '--dirty', '--match=v*'], stdout=subprocess.PIPE)
result = p.communicate()[0]
if p.returncode == 0:
version = result.split()[0][1:]
version = version.replace('-', '.')
return version
return '0'
setup(
name='corbo',
version=get_version(),
description='Announces Manager',
author='Serghei Mihai',
author_email='smihai@entrouvert.com',
packages=find_packages(),
include_package_data=True,
scripts=('manage.py',),
url='http://repos.entrouvert.org/corbo.git',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
],
install_requires=['django == 1.7',
'django-ckeditor',
'gadjo'
],
zip_safe=False,
)