-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 838 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 838 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
from setuptools import setup, find_packages
setup(
name="GitRepoScraper",
version="0.1.0",
author="Guilherme Bernardo",
author_email="gui25ber@gmail.com",
description="Embark on a coding quest to map the treasures of GitHub repositories into structured lore.",
long_description=open("README.md", encoding="utf-8").read(),
url="https://github.com/gui25/GitRepoScraper",
packages=find_packages(),
include_package_data=True,
install_requires=[
"requests",
],
entry_points={
"console_scripts": [
"gitrepotree_scraper=GitRepoScraper.main:main",
],
},
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.11",
)