-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 942 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
27
28
29
30
#!/usr/bin/env python
#coding: utf-8
from distutils.core import setup
import sys
reload(sys).setdefaultencoding("UTF-8")
setup(
name='django-haxe',
version='0.0.1-alpha',
author='Ivan Petukhov',
author_email='[email protected]',
packages=['django_haxe'],
url='https://github.com/satels/django-haxe',
download_url = 'https://github.com/satels/django-haxe/tarball/master',
license = 'MIT license',
description = u'Haxe Generator in Django'.encode('utf8'),
long_description = open('README').read().decode('utf8'),
classifiers=(
'Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Natural Language :: Russian',
),
)