-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 821 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 821 Bytes
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
"""Setup script of sesql-django-16"""
from setuptools import setup
from setuptools import find_packages
setup(
name='sesql-django-16',
version='1.0.1',
description='SeSQL ORM backend for Django 1.6',
long_description=open('README.rst').read(),
keywords='sesql, django',
author='Fantomas42',
author_email='fantomas42@gmail.com',
url='https://github.com/liberation/sesql-django-16',
packages=find_packages(),
classifiers=[
'Framework :: Django',
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
license='BSD License'
)