File: setup.py

package info (click to toggle)
django-auto-one-to-one 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: python: 118; makefile: 7
file content (20 lines) | stat: -rwxr-xr-x 464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3

from setuptools import setup, find_packages


setup(
    name='django-auto-one-to-one',
    version='3.3.0',
    packages=find_packages(exclude=('tests',)),

    url='https://chris-lamb.co.uk/projects/django-auto-one-to-one',
    author="Chris Lamb",
    author_email="chris@chris-lamb.co.uk",
    description="Automatically create and destroy child model instances",

    install_requires=(
        'Django>=1.11',
        'six',
    ),
)