-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
26 lines (25 loc) · 902 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import translations
setup(
name='yawd-translations',
url='http://yawd.eu/open-source-projects/yawd-translations/',
version = translations.__version__,
description='A set of tools for creating multilingual websites with 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,
)