Changes segpy-numpy to segpy_numpy : hyphen to an underscore in the source directectory.

This commit is contained in:
Robert Smallshire
2015-06-15 09:42:52 +02:00
parent a565f4d245
commit 47361906b1
10 changed files with 8 additions and 8 deletions
@@ -36,7 +36,7 @@ with open(local_file('DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='segpy-numpy',
name='segpy_numpy',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
@@ -47,14 +47,14 @@ setup(
long_description=long_description,
# The project's main homepage.
url='https://github.com/rob-smallshire/segpy',
url='https://github.com/sixty-north/segpy',
# Author details
author='Robert Smallshire',
author_email='robert@smallshire.org.uk',
author='Sixty North AS',
author_email='rob@sixty-north.com',
# Choose your license
license='GPL',
license='GNU Affero General Public License v3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
@@ -74,8 +74,7 @@ setup(
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
@@ -120,7 +119,8 @@ setup(
# Declare entry-points to modules.
entry_points={
'segpy.ext': 'segpy-numpy = segpy_numpy'
'console_scripts': [
]
},
)