-
Notifications
You must be signed in to change notification settings - Fork 0
Pip
Greg Flynn edited this page Nov 7, 2019
·
12 revisions
This is a basic setup.py file for making a package pip installable
from setuptools import setup
setup(
name="PackageName",
version="1.2.3a1",
description="What is the package",
author="Greg Flynn",
author_email="gregf36665@gmail.com",
packages=['Directory']
)setup(
...
install_requires = ['LogHandlerUtilities @ git+ssh://git@github.com/Lakenheath/LogHandlerUtilities.git@2.0.1']
)Note this uses ssh. See SSH for tips and tricks to make life easier
look into python setup.py build python setup.py install
todo