-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·37 lines (35 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
import os
from setuptools import setup
#from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requires = ['whoosh']
setup(
name = 'django-ide',
packages = ['djide',],
version = '0.0.6',
description = 'Web based IDE to develop Django apps',
author = 'Luis Sobrecueva',
author_email = '[email protected]',
license = 'GPL',
url = 'http://github.com/lusob/django-ide',
download_url=
'http://github.com/lusob/django-ide/downloads',
keywords = ['IDE', 'Integrated Development Environment', 'Django IDE'],
include_package_data=True,
install_requires = requires,
zip_safe=False,
classifiers = [
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Text Editors :: Integrated Development Environments (IDE)',
],
long_description = read('README.md')
)