@@ -13,7 +13,7 @@ def main():
1313 with open (path .join (this_directory , 'README.md' ), encoding = 'utf-8' ) as f :
1414 long_description = f .read ()
1515
16- setup (name = "pyrfc " ,
16+ setup (name = "rfcnt " ,
1717 version = "%d.%d.%d" % version ,
1818 description = "Python interface for rainflow counting" ,
1919 long_description = long_description ,
@@ -23,12 +23,12 @@ def main():
2323 license = 'BSD-2-Clause License' ,
2424 url = 'http://github.com/AndreasMartin72/rainflow' ,
2525 install_requires = ['numpy' ],
26- py_modules = ["pyrfc .utils" , "pyrfc .examples" ],
27- packages = ["pyrfc " , "pyrfc.test " ],
28- package_dir = {"pyrfc " : "" , "pyrfc.test " : "test " },
29- package_data = {"pyrfc " : ["run_examples.py" , "run_tests.py" , "requirements.txt" , "README.md" ],
30- "pyrfc.test " : ["long_series.csv" ]},
31- ext_modules = [Extension ("pyrfc.pyrfc " , ["src/pyrfc .cpp" , "src/rainflow.c" ],
26+ py_modules = ["rfcnt .utils" , "rfcnt .examples" ],
27+ packages = ["rfcnt " , "rfcnt.tests " ],
28+ package_dir = {"rfcnt " : "" , "rfcnt.tests " : "tests " },
29+ package_data = {"rfcnt " : ["run_examples.py" , "run_tests.py" , "requirements.txt" , "README.md" , "LICENSE " ],
30+ "rfcnt.tests " : ["long_series.csv" ]},
31+ ext_modules = [Extension ("rfcnt.rfcnt " , ["src/rfcnt .cpp" , "src/rainflow.c" ],
3232 define_macros = [
3333 ('NPY_NO_DEPRECATED_API' , 'NPY_1_7_API_VERSION' ),
3434 ('RFC_HAVE_CONFIG_H' , '0' ),
@@ -62,7 +62,7 @@ def main():
6262 'Operating System :: MacOS :: MacOS X' ,
6363 'Operating System :: Microsoft :: Windows' ,
6464 'Operating System :: POSIX' ,
65- 'Programming Language :: Python : 3' ,
65+ 'Programming Language :: Python :: 3' ,
6666 'Programming Language :: C++' ,
6767 'Programming Language :: C' ,
6868 'Topic :: Scientific/Engineering' ,
0 commit comments