forked from audiolion/django-language-field
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.15 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.15 KB
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
import os
from setuptools import setup
import languages as app
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except OSError:
return ''
setup(
name='django-language-field',
version=app.__version__,
description='A pluggable django app that provides a comprehensive language choices field',
long_description=read('README.rst'),
author='Ryan Castner',
author_email='ryancastner@gmail.com',
url='https://github.com/audiolion/django-language-field', # use the URL to the github repo
license='MIT',
platforms=['OS Independent'],
packages=['languages'], # this must be the same as the name above
zip_safe=False,
keywords=['django', 'language', 'languages', 'field'], # arbitrary keywords
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
)