💻
ATD Data & Technology Services Wiki
  • About
  • Essential Resources & Wikis
  • DTS Offices
    • Where to Eat Near Cameron Rd
  • Basics
    • Working at DTS Basics
    • Network Access
    • Document Storage
      • Using Google as a City Employee
    • Working Remotely from a Mac
      • Resetting Your Network Password from a Mac
      • Troubleshooting AnyConnect for macOS Catalina
    • Slack
  • Onboarding
    • Team Lead Checklist for New Employees
    • Welcome to DTS
  • Working at DTS
  • Off boarding
    • Your Last Day
    • Offboarding Checklist
  • Product Ops
    • Agile Project Management with GitHub + Zenhub
    • Project Delivery Workflow
    • Index Issue Specifications
    • DTS Website Management
    • Release Process
    • Product Manager Assignments
  • Developer
    • Dockless-Mobility
    • Docker
    • PostgREST
      • Pypgrest (Python Client)
      • Jobs-API
    • Python
    • Server Operation
  • APPLICATIONS
    • Application Management
  • Product Manager Portfolios
Powered by GitBook
On this page
  • Install package in editable mode
  • Updating and Publishing Packages to PyPi:
Export as PDF
  1. Developer

Python

PreviousJobs-APINextServer Operation

Last updated 5 years ago

Install package in editable mode

From parent directory of package:

$ pip install -e <your package name>

Updating and Publishing Packages to PyPi:

See

  1. Your python envrionment will require the following pacakges:

     python=3
     setuptools
     twine
  2. Update the number in the package's setup.py.

  3. From the same directory as setup.py build the new version:

     $ python setup.py bdist_wheel --universal
  4. Upload the new version to . (You'll be prompted to enter your username/password):

     $ twine upload dist/*
Packaging Python Projects (python.org)
semantic version
PyPi