]> code.communitydata.science - wikia_userroles_scraper.git/blob - setup.py
put in the longer version of the copyright
[wikia_userroles_scraper.git] / setup.py
1 #!/usr/bin/env python3
2
3 # configuration for the python package
4 # Copyright (C) 2018  Nathan TeBlunthuis
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
18
19 from setuptools import setup
20
21 setup(name='WikiaUserrolesScraper',
22       version='0.1',
23       py_modules=['scraper_utils'],
24       scripts=['scrape_list.sh','scrape_log.sh','userroles_from_listusers.py','userroles_from_logevents.py'],
25       install_requires=['argparse>=1.4','requests>=2.18.4','pandas>=0.23.0'],
26       license='GPLv3',
27       long_description=open('README.txt').read())

Community Data Science Collective || Want to submit a patch?