Skip to content

Commit 9630032

Browse files
committed
stuff
1 parent 9cd8583 commit 9630032

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
# Setuptools distribution folder.
55
/dist/
6+
/build/
67

78
# Python egg metadata, regenerated from source files by setuptools.
8-
/*.egg-info
9+
/*.egg-info
10+
/*.eggs

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
import os.path
22
from setuptools import setup
33

4-
here = os.path.dirname(__file__)
5-
readme_path = os.path.join(here, 'README.md')
6-
readme = open(readme_path, 'rb').read().decode('utf-8')
4+
long_description = open('./README.md').read()
75

86
setup(name='pyfunctionbases',
97
use_scm_version={
108
'version_scheme': 'post-release',
119
'local_scheme': 'dirty-tag'
1210
},
1311
description='A Python module to compute multidimensional arrays of evaluated functions.',
14-
long_description=readme,
12+
long_description=long_description,
1513
url='https://github.com/NiMlr/PyFunctionBases',
1614
author='Nils Mueller',
1715
author_email='[email protected]',

0 commit comments

Comments
 (0)