mirror of
https://github.com/zoriya/Autopipe.git
synced 2025-12-06 02:56:09 +00:00
Fixing pip's build
This commit is contained in:
6
.gitignore
vendored
6
.gitignore
vendored
@@ -1,6 +1,6 @@
|
|||||||
.idea/
|
.idea/
|
||||||
.venv/
|
.venv/
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
build/
|
||||||
# Multiples python versions are targeted so the lock file must be ignored.
|
dist/
|
||||||
Pipfile.lock
|
autopipe.egg-info/
|
||||||
|
|||||||
10
Pipfile
10
Pipfile
@@ -1,10 +0,0 @@
|
|||||||
[[source]]
|
|
||||||
url = "https://pypi.org/simple"
|
|
||||||
verify_ssl = true
|
|
||||||
name = "pypi"
|
|
||||||
|
|
||||||
[packages]
|
|
||||||
feedparser = "*"
|
|
||||||
requests = "*"
|
|
||||||
|
|
||||||
[dev-packages]
|
|
||||||
4
setup.py
4
setup.py
@@ -4,7 +4,7 @@ with open("README.md", "r") as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="autopipe-AnonymusRaccoon",
|
name="autopipe",
|
||||||
version="0.0.1",
|
version="0.0.1",
|
||||||
author="Tristan Roux",
|
author="Tristan Roux",
|
||||||
author_email="tr.tristan-roux@outlook.fr",
|
author_email="tr.tristan-roux@outlook.fr",
|
||||||
@@ -12,7 +12,9 @@ setuptools.setup(
|
|||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/AnonymusRaccoon/Autopipe",
|
url="https://github.com/AnonymusRaccoon/Autopipe",
|
||||||
|
scripts=["./bin/autopipe"],
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
|
install_requires=["requests", "feedparser"],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
|||||||
Reference in New Issue
Block a user