mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 06:40:24 +01:00
docs: long_description added to setup.py
This commit is contained in:
parent
21eed4c596
commit
5bd10cb81d
1 changed files with 5 additions and 2 deletions
7
setup.py
7
setup.py
|
@ -1,10 +1,13 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
from pathlib import Path
|
||||
this_directory = Path(__file__).parent
|
||||
long_description = (this_directory / "README.md").read_text()
|
||||
|
||||
setup(name='pyerrors',
|
||||
version='2.1.0+dev',
|
||||
description='Error analysis for lattice QCD',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
author='Fabian Joswig',
|
||||
author_email='fabian.joswig@ed.ac.uk',
|
||||
packages=find_packages(),
|
||||
|
|
Loading…
Add table
Reference in a new issue