Skip to content

Commit 6b8f105

Browse files
Changed module name
1 parent d4a4c47 commit 6b8f105

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ build
33
dist
44
lib
55
cython_src/*.c*
6+
*.egg-info
67

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Installing
99
To install and test, do the following::
1010

1111
python3 -m pip install .
12-
python3 -m zs_hfk.test
12+
python3 -m knot_floer_homology.test
1313

1414
You should see a result such as ``TestResults(failed=0, attempted=24)``.
1515

@@ -18,9 +18,9 @@ Usage
1818

1919
In Python, do::
2020

21-
>>> import zs_hfk, spherogram
21+
>>> import knot_floer_homology, spherogram
2222
>>> L = spherogram.Link('K10n10')
23-
>>> hfk = zs_hfk.HFK(L)
23+
>>> hfk = knot_floer_homology.HFK(L)
2424
>>> for key in hfk: print('%s: %s'%(key, hfk[key]))
2525
...
2626
modulus: 2

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
extra_compile_args = ['-O3', '-std=c++11']
1717

1818
hfk = Extension(
19-
name = 'zs_hfk.hfk',
19+
name = 'knot_floer_homology.hfk',
2020
sources = ['cython_src/hfk.cpp'] + cpp_sources,
2121
include_dirs = [cpp_dir],
2222
extra_compile_args = extra_compile_args
@@ -44,13 +44,13 @@ def run(self):
4444
cythonize([file])
4545

4646
setup(
47-
name='zs_hfk',
47+
name='knot_floer_homology',
4848
version=version,
49-
author='Zoltán Szabó and Nathan M. Dunfield',
50-
author_email='[email protected]',
51-
url='https://github/NathanDunfield/ZS_HFK',
52-
packages=['zs_hfk'],
53-
package_dir={'zs_hfk':'python_src'},
49+
author='Zoltán Szabó, Marc Culler, Nathan M. Dunfield, and Matthias Goerner',
50+
author_email='[email protected]',
51+
url='https://github/3-manifolds/knot_floer_homology',
52+
packages=['knot_floer_homology'],
53+
package_dir={'knot_floer_homology':'python_src'},
5454
ext_modules = [hfk],
5555
cmdclass = {
5656
'clean':HFKClean,

0 commit comments

Comments
 (0)