File: release.nix

package info (click to toggle)
browser-cookie3 0.20.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188 kB
  • sloc: python: 1,595; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#   # Enter the environment
#   nix-shell release.nix
#
#   # create the package
#   python setup.py bdist # system specific
#   python setup.py sdist # for all 
#
#   # upload you package
#   twine upload dist/project_name-x.y.z.tar.gz
with import <nixpkgs> {};

(pkgs.python3.withPackages (ps: with ps; [twine setuptools])).env