-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (40 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
"""
colab-mezuro plugin
===================
A Mezuro plugin for Colab.
"""
from setuptools import setup, find_packages
install_requires = [
'colab',
'kalibro_client==1.3.0.1',
]
tests_require = [
'mock',
'kalibro_client==1.3.0.1',
]
setup(
name="colab-mezuro",
version='0.1.4',
author='Rafael Manzo',
author_email='[email protected]',
url='https://github.com/colab/colab-mezuro-plugin',
description='A Mezuro plugin for Colab',
long_description=__doc__,
license='GPLv3',
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
install_requires=install_requires,
test_suite="tests.runtests.run",
tests_require=tests_require,
extras_require={'test': tests_require},
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)