We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8d7c9 commit f772597Copy full SHA for f772597
notes/README.md
@@ -38,5 +38,7 @@ reading order:
38
39
* *release-0.9.txt*: release notes
40
41
+* *release-1.0.txt*: release notes
42
-Revised Apr 2013
43
+
44
+Revised May 2013
pymodel.pth
@@ -0,0 +1 @@
1
+pymodel
setup.py
@@ -18,6 +18,9 @@
18
"""
19
20
from distutils.core import setup
21
+from distutils import sysconfig
22
23
+site_packages_path = sysconfig.get_python_lib()
24
25
setup(
26
# Metadata for PyPI
@@ -37,6 +40,8 @@
37
packages = ['pymodel'],
+ data_files = [(site_packages_path, ['pymodel.pth'])],
45
scripts = [ 'bin/clogdiff',
46
'bin/clogdiff.bat',
47
'bin/dotpdf',
0 commit comments