Skip to content

Instantly share code, notes, and snippets.

@KCarretto
Created December 27, 2018 18:28
Show Gist options
  • Save KCarretto/ff74a737525bb3de4226717d45980b9e to your computer and use it in GitHub Desktop.
Save KCarretto/ff74a737525bb3de4226717d45980b9e to your computer and use it in GitHub Desktop.
Simple setup.py
"""
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="kcarretto@gmail.com",
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