-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.29 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
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
import sys
from setuptools import setup, find_packages
from django.core import management
with open(os.path.join(os.path.dirname(__file__), 'README.markdown')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
currentdir = os.getcwd()
os.chdir(os.path.join(currentdir, 'paiji2_shoutbox'))
management.call_command('compilemessages', stdout=sys.stdout)
os.chdir(currentdir)
setup(
name='django-paiji2-shoutbox',
version='0.2',
packages=find_packages(),
include_package_data=True,
description='A simple shoutbox app',
long_description=README,
url='https://github.com/rezometz/django-paiji2-shoutbox',
author='Supelec Rezo Metz',
author_email='[email protected]',
license='Affero GPL v3+',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'django-bootstrap3>=6',
'django-modular-blocks',
'django-paiji2-utils>=0.1',
],
)