DerekDardzinski / OgreInterface

Package for creating and optimizing lattice matched and domain matched epitaxial interfaces.
Other
0 stars 4 forks source link

The minor url error in the zip file. #2

Open hongyi-zhao opened 7 months ago

hongyi-zhao commented 7 months ago

Today, I downloaded the OgreInterface-01-23-22.zip from here, then extracted and saw the following content in the setup.py file included in it:

from setuptools import setup, find_packages

with open('./README.md', 'r') as fh:
    long_description = fh.read()

setup(
    name='OgreInterfaces',
    version='0.0.1',
    description='A Python library used to generate and optimize epitaxial inorganic interface structures.',
    long_description=long_description,
    long_description_content_type='text/markdown',
    packages=find_packages(),
    install_requires = ['pymatgen>=2022.0.17', 'matplotlib', 'numpy', 'tqdm', 'ase', 'plotly'],
    url='https://github.com/DerekDardzinski/OgreInterfaces',
    authour='Derek Dardzinski',
    authour_email='dardzinski.derek@gmail.com',
    license='BSD3',
)

As you can see, there is an error in the url='https://github.com/DerekDardzinski/OgreInterfaces',, i.e., the redundant s at the end of the URL should be removed.

Regards, Zhao