Fixing pip's build

This commit is contained in:
Zoe Roux
2020-11-15 19:31:32 +01:00
parent 1cea8af49c
commit e42ad04027
3 changed files with 6 additions and 14 deletions

6
.gitignore vendored
View File

@@ -1,6 +1,6 @@
.idea/
.venv/
__pycache__/
# Multiples python versions are targeted so the lock file must be ignored.
Pipfile.lock
build/
dist/
autopipe.egg-info/

10
Pipfile
View File

@@ -1,10 +0,0 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
feedparser = "*"
requests = "*"
[dev-packages]

View File

@@ -4,7 +4,7 @@ with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="autopipe-AnonymusRaccoon",
name="autopipe",
version="0.0.1",
author="Tristan Roux",
author_email="tr.tristan-roux@outlook.fr",
@@ -12,7 +12,9 @@ setuptools.setup(
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AnonymusRaccoon/Autopipe",
scripts=["./bin/autopipe"],
packages=setuptools.find_packages(),
install_requires=["requests", "feedparser"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",