diff --git a/.gitignore b/.gitignore index c2f453f..673f643 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/Pipfile b/Pipfile deleted file mode 100644 index 964f268..0000000 --- a/Pipfile +++ /dev/null @@ -1,10 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] -feedparser = "*" -requests = "*" - -[dev-packages] diff --git a/setup.py b/setup.py index 2e31e10..67de107 100644 --- a/setup.py +++ b/setup.py @@ -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",