-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.28 KB
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
import setuptools
with open("README.md") as f:
long_description = f.read()
if __name__ == "__main__":
setuptools.setup(
name='propertylistings',
version='0.1.0',
author='Christopher Christofi',
author_email='christopherlchristofi@outlook.com',
license='GPL-3.0',
description='Webscraping tool for archiving sales records on RightMove.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/christopher-christofi/propertylistings',
project_urls={
"Bug Tracker": "https://github.com/christopher-christofi/propertylistings/issues",
},
packages=setuptools.find_packages(),
include_package_data=True,
python_requires=">=3.0",
install_requires=[
'beautifulsoup4',
'requests',
'click',
],
entry_points={
'console_scripts': [
'propertylistings = propertylistings.scripts.propertylistings:cli',
],
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)