-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 895 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
from setuptools import setup, find_packages
VERSION = '0.2'
setup(
name='trybox-django',
version=VERSION,
description='TryBox:Django',
author='Sophilabs',
author_email='[email protected]',
url='https://github.com/sophilabs/trybox-django',
download_url='http://github.com/sophilabs/trybox-django/tarball/trybox-django-v{0}#egg=trybox-django'.format(VERSION),
license='MIT',
install_requires=['django', 'trybox'],
dependency_links=['https://github.com/sophilabs/trybox/tarball/master#egg=trybox'],
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)