зеркало из https://github.com/mozilla/bedrock.git
18 строки
373 B
Python
18 строки
373 B
Python
|
import os
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
|
||
|
setup(name='project',
|
||
|
version='1.0',
|
||
|
description='Django application.',
|
||
|
long_description='',
|
||
|
author='',
|
||
|
author_email='',
|
||
|
license='',
|
||
|
url='',
|
||
|
include_package_data=True,
|
||
|
classifiers = [],
|
||
|
packages=find_packages(exclude=['tests']),
|
||
|
install_requires=[])
|