Browse Source

New translations setup.py (French)

l10n_v0.2.x
linlin 4 years ago
parent
commit
6d18200ea3
1 changed files with 32 additions and 0 deletions
  1. +32
    -0
      lang/fr/setup.py

+ 32
- 0
lang/fr/setup.py View File

@@ -0,0 +1,32 @@
import setuptools

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

with open('requirements_pypi.txt') as fp:
install_requires = fp.read()

setuptools.setup(
name="graphkit-learn",
version="0.2.1b1",
author="Linlin Jia",
author_email="linlin.jia@insa-rouen.fr",
description="A Python library for graph kernels, graph edit distances, and graph pre-images",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
'Documentation': 'https://graphkit-learn.readthedocs.io',
'Source': 'https://github.com/jajupmochi/graphkit-learn',
'Tracker': 'https://github.com/jajupmochi/graphkit-learn/issues',
},
url="https://github.com/jajupmochi/graphkit-learn",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
],
install_requires=install_requires,
)

Loading…
Cancel
Save