-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (34 loc) · 780 Bytes
/
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
# -*- coding: UTF8 -*-
'''
Parliament files scraper
~~~~~~~~~~~~~~~~~~~~~~~
OpenData Hackathon.
'''
from setuptools import setup
setup(
name='Swiss Parliament Scraper',
description="Scrape and analyze transcriptions of swiss parliament sessions.",
version='0.1dev',
author='OpenData.ch',
author_email='',
packages=['parl_scraper',],
# package_data={
# '...': ['...', ],
# },
data_files=[
# ('/etc/udev/rules.d/', ['scripts/99-usbftdi.rules']),
],
entry_points={
'console_scripts': [
# 'target = package:function',
],
},
scripts=[
# 'scripts/...',
],
license='MIT',
long_description=open('README.md').read(),
install_requires=[
'requests',
],
)