Skip to content

Commit dfdf36d

Browse files
committed
Updating setup script version and adding MANIFEST.in.
1 parent 606fd7b commit dfdf36d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Include project description file
2+
include docs/description.rst
3+
4+
# Include the license file
5+
include LICENSE

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@
1313

1414
setup(
1515
name='pompy',
16-
version='0.1.0',
16+
version='0.1.1',
1717
description='Puff-based odour plume model',
1818
long_description=long_description,
1919
long_description_content_type='text/x-rst',
2020
author='Matt Graham',
21+
license='MIT',
2122
url='https://github.com/InsectRobotics/pompy',
2223
packages=['pompy'],
23-
install_requires=['numpy', 'scipy'],
24+
install_requires=['numpy', 'scipy', 'matplotlib'],
2425
classifiers=[
2526
'Programming Language :: Python :: 2',
2627
'Programming Language :: Python :: 2.7',
@@ -32,10 +33,11 @@
3233
'License :: OSI Approved :: MIT License',
3334
'Topic :: Scientific/Engineering',
3435
'Intended Audience :: Science/Research',
36+
'Operating System :: OS Independent',
3537
],
3638
keywords='simulation plume navigation',
3739
project_urls={
3840
'Documentation': 'https://pompy-docs.readthedocs.io/en/latest/',
39-
'Source': 'https://github.com/InsectRobotics/pompy',
40-
}
41+
},
42+
include_package_data=True
4143
)

0 commit comments

Comments
 (0)