Skip to content

Commit 191977b

Browse files
committed
Add dev.md
1 parent c65dcf0 commit 191977b

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Dev.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Development Instructions
2+
3+
## Prereqs
4+
5+
You need pipenv to use this package. Install it with `pip install pipenv`
6+
7+
## Pushing a new version
8+
9+
In order to push a new version, you need to create a `~/.pypirc` file with the following contents:
10+
11+
```
12+
[distutils]
13+
index-servers =
14+
metify-internal
15+
16+
[metify-internal]
17+
repository=https://download.metify.io/repository/pypi-internal/
18+
username=USER
19+
password=PASS
20+
```
21+
22+
After creating the file, run:
23+
24+
```
25+
chmod 600 ~/.pypirc
26+
```
27+
28+
Make sure to bump the version number in `setup.cfg`.
29+
30+
Then run `make publish`

0 commit comments

Comments
 (0)