We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce6963 commit 619a921Copy full SHA for 619a921
setup.py
@@ -1,6 +1,15 @@
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
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
13
import os
14
from setuptools import setup
15
@@ -15,7 +24,7 @@ def read(fname):
24
setup(
16
25
name=name,
17
26
version=version,
18
- packages=[name],
27
+ packages=[name.replace("-","_")],
19
28
author="tintinweb",
20
29
author_email="[email protected]",
21
30
description=(
0 commit comments