File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
include versioneer.py
2
2
include xsimlab/_version.py
3
+
4
+ include README.rst
5
+ include CONTRIBUTING.rst
6
+ include LICENSE
7
+ recursive-include licenses *
8
+ include MANIFEST.in
9
+
10
+ recursive-include doc *
11
+ prune doc/_build
12
+ prune doc/generated
13
+
14
+ global-exclude .DS_Store
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
- from setuptools import setup
3
+ from setuptools import setup , find_packages
4
4
from os .path import exists
5
5
6
6
import versioneer
15
15
maintainer = 'Benoit Bovy' ,
16
16
maintainer_email = '[email protected] ' ,
17
17
license = 'BSD-Clause3' ,
18
- keywords = 'python xarray modelling simulation- framework' ,
19
- packages = [ 'xsimlab' , 'xsimlab.variable' ] ,
18
+ keywords = 'python xarray modelling simulation framework' ,
19
+ packages = find_packages () ,
20
20
long_description = (open ('README.rst' ).read () if exists ('README.rst' )
21
21
else '' ),
22
22
python_requires = '>=3.4' ,
23
23
install_requires = ['numpy' , 'xarray >= 0.8.0' ],
24
+ tests_require = ['pytest >= 3.3.0' ],
24
25
zip_safe = False )
You can’t perform that action at this time.
0 commit comments