Skip to content

Commit 07c403b

Browse files
committed
some updates in MANIFEST.in and setup.py
1 parent 2a3ee5f commit 07c403b

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

Diff for: MANIFEST.in

+12
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
include versioneer.py
22
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

Diff for: setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
from setuptools import setup
3+
from setuptools import setup, find_packages
44
from os.path import exists
55

66
import versioneer
@@ -15,10 +15,11 @@
1515
maintainer='Benoit Bovy',
1616
maintainer_email='[email protected]',
1717
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(),
2020
long_description=(open('README.rst').read() if exists('README.rst')
2121
else ''),
2222
python_requires='>=3.4',
2323
install_requires=['numpy', 'xarray >= 0.8.0'],
24+
tests_require=['pytest >= 3.3.0'],
2425
zip_safe=False)

0 commit comments

Comments
 (0)