Created
December 27, 2018 18:28
-
-
Save KCarretto/ff74a737525bb3de4226717d45980b9e to your computer and use it in GitHub Desktop.
Simple setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Setup info used by pip. | |
""" | |
from setuptools import setup, find_packages | |
setup( | |
name="my_project", | |
url="https://github.com/kcarretto/my_project_repo", | |
author="Kyle Carretto", | |
author_email="[email protected]", | |
version="0.0.1", | |
packages=find_packages(), | |
install_requires=[ | |
"some_production_requirement==1.0.0" | |
"requests==2.19.1" | |
], | |
license=open("LICENSE").read(), | |
long_description=open("README.md").read(), | |
setup_requires=["pytest-runner"], | |
tests_require=["pytest"], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment