-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 815 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
from setuptools import setup, find_packages
version = __import__('term').__version__
setup(
name='django-term',
packages=find_packages(),
include_package_data=True,
version=version,
description='In browser term for Django ',
author='synw',
author_email='synwe@yahoo.com',
url='https://github.com/synw/django-term',
download_url='https://github.com/synw/django-term/releases/tag/' + version,
keywords=['django', 'terminal'],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'django-instant>=0.6',
"goerr",
],
zip_safe=False
)