Statistiques
| Branche: | Tag: | Révision :

dockonsurf / setup.py @ ffa1b366

Historique | Voir | Annoter | Télécharger (783 octet)

1
import setuptools
2

    
3
with open("README.md", "r") as readme_fh:
4
    long_description = readme_fh.read()
5

    
6
setuptools.setup(
7
    name="dockonsurf", # Replace with your own username
8
    version="0.0.1",
9
    author="Carles Martí",
10
    author_email="carles.marti2@gmail.com",
11
    description="Code to systematically find the most stable geometry for "
12
                "molecules on surfaces",
13
    long_description=long_description,
14
    long_description_content_type="text/markdown",
15
    url="http://forge.cbp.ens-lyon.fr/redmine/projects/dockonsurf",
16
    packages=setuptools.find_packages(),
17
    classifiers=[
18
        "Programming Language :: Python :: 3",
19
        "License :: OSI Approved :: MIT License",
20
        "Operating System :: OS Independent",
21
    ],
22
    python_requires='>=3.6',
23
)