You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
479 B
Python
16 lines
479 B
Python
6 years ago
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='major_projects_grabber',
|
||
|
version='0.1.0',
|
||
|
packages=['major_projects_grabber'],
|
||
|
install_requires=['requests', 'pandas', 'lxml'],
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'major_projects_grabber = major_projects_grabber:main'
|
||
|
]
|
||
|
},
|
||
|
author='Dan Howe',
|
||
|
author_email='d.howe@wrl.unsw.edu.au',
|
||
|
description='Download documents from the NSW DPE Major Projects website.')
|