mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
Use find_packages in setuptools (#33)
This commit is contained in:
parent
d49031c8e6
commit
c182c515ae
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
|
@ -1,4 +1,4 @@
|
|||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name = 'django-eav2',
|
||||
|
|
@ -8,7 +8,7 @@ setup(
|
|||
provides = ['eav'],
|
||||
description = 'Entity-Attribute-Value storage for Django',
|
||||
url = 'http://github.com/makimo/django-eav2',
|
||||
packages = ['eav', 'tests'],
|
||||
packages = find_packages(),
|
||||
maintainer = 'Iwo Herka',
|
||||
maintainer_email = 'hi@iwoherka.eu',
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue