Skip to content

Commit 619a921

Browse files
committed
fix package name
1 parent 1ce6963 commit 619a921

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4+
'''
5+
6+
deps (requires up2date version):
7+
*) pip install --upgrade pip wheel setuptools twine
8+
publish to pypi w/o having to convert Readme.md to RST:
9+
1) #> python setup.py sdist bdist_wheel
10+
2) #> twine upload dist/* #<specify bdist_wheel version to upload>; #optional --repository <testpypi> or --repository-url <testpypi-url>
11+
12+
'''
413
import os
514
from setuptools import setup
615

@@ -15,7 +24,7 @@ def read(fname):
1524
setup(
1625
name=name,
1726
version=version,
18-
packages=[name],
27+
packages=[name.replace("-","_")],
1928
author="tintinweb",
2029
author_email="[email protected]",
2130
description=(

0 commit comments

Comments
 (0)