mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[mod] move to setuptools
This commit is contained in:
parent
76c8620861
commit
b739f27994
1 changed files with 2 additions and 7 deletions
9
setup.py
9
setup.py
|
@ -2,7 +2,7 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from distutils.core import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
from moulinette.globals import LOCALES_DIR
|
||||
|
||||
|
@ -23,12 +23,7 @@ setup(name='Moulinette',
|
|||
author_email='yunohost@yunohost.org',
|
||||
url='http://yunohost.org',
|
||||
license='AGPL',
|
||||
packages=[
|
||||
'moulinette',
|
||||
'moulinette.authenticators',
|
||||
'moulinette.interfaces',
|
||||
'moulinette.utils',
|
||||
],
|
||||
packages=find_packages(),
|
||||
data_files=[(LOCALES_DIR, locale_files)],
|
||||
python_requires='==2.7.*',
|
||||
install_requires=[
|
||||
|
|
Loading…
Add table
Reference in a new issue