зеркало из https://github.com/mozilla/bedrock.git
17 строки
344 B
Python
17 строки
344 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="bedrock",
|
|
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=[],
|
|
)
|