-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 792 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 792 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
26
from setuptools import setup, find_packages
setup(
name = 'mmri',
version = '0.2.0-dev',
author = 'PlannerStack',
author_email = 'contact@plannerstack.org',
license = 'MIT',
description = 'Testing code and data for the Beter Benutten MMRI project',
long_description = open('README.rst').read(),
url = 'http://github.com/plannerstack/testset',
download_url = 'http://github.com/plannerstack/testset/archives/master',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
platforms = ['all'],
entry_points = {
'console_scripts': [
'merge-gtfs = mmri.gtfs.merge:main',
'mmri-test-runner = mmri.test_runner:main',
],
},
install_requires = [
'requests',
],
)