File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# Setuptools distribution folder.
5
5
/dist /
6
+ /build /
6
7
7
8
# Python egg metadata, regenerated from source files by setuptools.
8
- /* .egg-info
9
+ /* .egg-info
10
+ /* .eggs
Original file line number Diff line number Diff line change 1
1
import os .path
2
2
from setuptools import setup
3
3
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 ()
7
5
8
6
setup (name = 'pyfunctionbases' ,
9
7
use_scm_version = {
10
8
'version_scheme' : 'post-release' ,
11
9
'local_scheme' : 'dirty-tag'
12
10
},
13
11
description = 'A Python module to compute multidimensional arrays of evaluated functions.' ,
14
- long_description = readme ,
12
+ long_description = long_description ,
15
13
url = 'https://github.com/NiMlr/PyFunctionBases' ,
16
14
author = 'Nils Mueller' ,
17
15
You can’t perform that action at this time.
0 commit comments