-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 859 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 859 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
27
28
29
import os
import setuptools
def requirements():
with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), encoding="utf-8") as f:
return f.read().splitlines()
setuptools.setup(
name="default-scraper",
version="1.1.1",
license="MIT",
author="Seongbum Seo",
author_email="sbumseo@bigpicture.team",
description="Web Scraper",
long_description=open("README.md").read(),
url="https://github.com/bigpicture-kr/default-scraper",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
"default_scraper": ["drivers/chromedriver"],
},
zip_safe=True,
install_requires=requirements(),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
)