11from setuptools import setup
22
3+ def read (file ):
4+ return open (file , 'r' ).read ()
35
4- with open ('README.md' , 'r' ) as fh :
5- long_description = fh . read ()
6+ LONG_DESCRIPTION = read ('README.md' )
7+ LICENSE = read ('LICENSE.txt' )
68
79setup (
810 name = 'OceanLab' ,
9- version = '0.0.5' ,
10- packages = ['OceanLab' ],
11+ version = '0.0.7' ,
12+ packages = ['OceanLab' ],
13+ include_package_data = True ,
1114 description = 'Python functions for Physical Oceanography' ,
12- long_description = long_description ,
15+ long_description = LONG_DESCRIPTION ,
1316 long_description_content_type = 'text/markdown' ,
17+ download_url = 'https://pypi.python.org/pypi/OceanLab' ,
1418 url = 'https://github.com/iuryt/OceanLab' ,
1519 author = 'Iury T. Simoes-Sousa' ,
162017- license = 'MIT' ,
21+ license = LICENSE ,
1822 py_modules = ['OA' ,'EOF' ,'DYN' ],
19- package_dir = {'' : 'src/' },
2023 classifiers = [
2124 "Programming Language :: Python :: 3" ,
2225 "Programming Language :: Python :: 3.6" ,
2831 'seawater ~= 3.3' ,
2932 'numpy ~= 1.18' ,
3033 ],
31- )
34+ )
0 commit comments