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