Commit 15e16ec4600220190ec7969862c651f0c791a62f

Authored by Quillot Mathias
1 parent 29318d9916
Exists in master

Changing setup file name

Showing 2 changed files with 23 additions and 23 deletions Side-by-side Diff

  1 +import setuptools
  2 +
  3 +with open("README.md", "r") as fh:
  4 + long_description = fh.read()
  5 +
  6 +setuptools.setup(
  7 + name="volia",
  8 + version="0.0.1",
  9 + author="Mathias Quillot",
  10 + author_email="mathias.quillot@alumni.univ-avignon.fr",
  11 + description="A package dedicated to my experiments on actor voices",
  12 + long_description=long_description,
  13 + long_description_content_type="text/markdown",
  14 + url="",
  15 + packages=setuptools.find_packages(),
  16 + classifiers=[
  17 + "Programming Language :: Python :: 3",
  18 + "License :: OSI Approved :: MIT License",
  19 + "Operating System :: OS Independent",
  20 + ],
  21 + include_package_data=True,
  22 + python_requires='>=3.6',
  23 +)
setup_volia.py
1   -import setuptools
2   -
3   -with open("README.md", "r") as fh:
4   - long_description = fh.read()
5   -
6   -setuptools.setup(
7   - name="volia",
8   - version="0.0.1",
9   - author="Mathias Quillot",
10   - author_email="mathias.quillot@alumni.univ-avignon.fr",
11   - description="A package dedicated to my experiments on actor voices",
12   - long_description=long_description,
13   - long_description_content_type="text/markdown",
14   - url="",
15   - packages=setuptools.find_packages(),
16   - classifiers=[
17   - "Programming Language :: Python :: 3",
18   - "License :: OSI Approved :: MIT License",
19   - "Operating System :: OS Independent",
20   - ],
21   - include_package_data=True,
22   - python_requires='>=3.6',
23   -)