2017-08-03 18:42:33 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2018-03-16 05:33:37 +03:00
|
|
|
from setuptools import setup, find_packages
|
2017-08-03 18:42:33 +03:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='taar_api',
|
2018-03-16 22:11:39 +03:00
|
|
|
version='0.3',
|
2017-08-03 18:42:33 +03:00
|
|
|
description='This is https://github.com/mozilla/taar_api',
|
|
|
|
author='Mozilla Foundation',
|
|
|
|
author_email='',
|
2018-03-16 05:33:37 +03:00
|
|
|
url='https://github.com/mozilla/taar_api',
|
|
|
|
packages=find_packages(exclude=['tests', 'tests/*']),
|
2017-08-03 18:42:33 +03:00
|
|
|
)
|