Skip to content

Commit

Permalink
setup.py hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
darxtrix committed Nov 24, 2018
1 parent cf1fca0 commit c568b65
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .dev-docs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Now setting up a subdomain
- $ now domains ls # for listing all the domains managed by now
- Link to the original tutorial https://zeit.co/docs/v1/getting-started/assign-a-domain-name#4.-using-a-custom-domain-with-a-cname

Now deploying
=============
- now -e <env variables>


Including extra files in the egg package
=======================================
Expand Down Expand Up @@ -42,4 +46,12 @@ Inspecting installation packages

- Best practice for data files

- egg-info is used for installation from the software distribution tarball in case we cannot install the wheel package
- egg-info is used for installation from the software distribution tarball in case we cannot install the wheel package

Setup.py hacks
==============
- Undo python setup.py develop by using -u flag
- Undo python setup.py install

$ python setup.py install --record files.txt
$ cat files.txt | xargs rm -rf

0 comments on commit c568b65

Please sign in to comment.