Skip to content

Commit

Permalink
Installation setup (#3)
Browse files Browse the repository at this point in the history
Co-authored-by: Ophir Back <[email protected]>
  • Loading branch information
Kle0s and Ophir Back authored Feb 4, 2024
1 parent c17728b commit 0f11ceb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 3 additions & 6 deletions project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[project]
name = "google-code-discovery"
version = "0.0.1"
dependencies = [
"requests",
]
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
from setuptools import setup, find_packages

setup(
name="google_code_discovery",
name="google-code-discovery",
version="0.0.1",
packages=find_packages(
where="gcd"
),
install_requires=[
'requests',
'lxml',
'urllib3',
"requests",
"lxml",
"urllib3",
"enum34;python_version<'3.4'"
],
license="MIT",
entry_points = {
Expand Down

0 comments on commit 0f11ceb

Please sign in to comment.