forked from goabout/mmri
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 705 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 705 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'mmri',
version = '0.1.0-dev',
author = 'Go About and others',
author_email = 'tech@goabout.com',
license = 'MIT',
description = 'Source code for the Beter Benutten MMRI project',
long_description = open('README.rst').read(),
url = 'http://github.com/goabout/mmri',
download_url = 'http://github.com/goabout/mmri/archives/master',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
platforms = ['all'],
entry_points = {
'console_scripts': [
'test-otp = mmri.test_otp:main',
],
},
install_requires = [
'requests',
],
)