taar-api-lite/setup.py

14 строки
406 B
Python
Исходник Постоянная ссылка Обычный вид История

2017-08-03 18:42:33 +03:00
#!/usr/bin/env python
from setuptools import setup, find_packages
2017-08-03 18:42:33 +03:00
setup(
2018-04-09 18:09:02 +03:00
name='taar_api_lite',
version='0.4.6',
2018-04-09 18:09:02 +03:00
description=""" Flask webservice for deploying Mozilla taar-lite.
This is a fork of the previous Django webservice implementation.""",
2017-08-03 18:42:33 +03:00
author='Mozilla Foundation',
2018-04-09 18:09:02 +03:00
url='https://github.com/mozilla/taar-api-lite',
packages=find_packages(exclude=['tests', 'tests/*']),
2017-08-03 18:42:33 +03:00
)