Skip to content

Commit

Permalink
some updates in MANIFEST.in and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
benbovy committed Jan 12, 2018
1 parent 2a3ee5f commit 07c403b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
include versioneer.py
include xsimlab/_version.py

include README.rst
include CONTRIBUTING.rst
include LICENSE
recursive-include licenses *
include MANIFEST.in

recursive-include doc *
prune doc/_build
prune doc/generated

global-exclude .DS_Store
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages
from os.path import exists

import versioneer
Expand All @@ -15,10 +15,11 @@
maintainer='Benoit Bovy',
maintainer_email='benbovy@gmail.com',
license='BSD-Clause3',
keywords='python xarray modelling simulation-framework',
packages=['xsimlab', 'xsimlab.variable'],
keywords='python xarray modelling simulation framework',
packages=find_packages(),
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
python_requires='>=3.4',
install_requires=['numpy', 'xarray >= 0.8.0'],
tests_require=['pytest >= 3.3.0'],
zip_safe=False)

0 comments on commit 07c403b

Please sign in to comment.