Skip to content

Commit

Permalink
Updating setup script version and adding MANIFEST.in.
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-graham committed Nov 9, 2018
1 parent 606fd7b commit dfdf36d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Include project description file
include docs/description.rst

# Include the license file
include LICENSE
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@

setup(
name='pompy',
version='0.1.0',
version='0.1.1',
description='Puff-based odour plume model',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Matt Graham',
license='MIT',
url='https://github.com/InsectRobotics/pompy',
packages=['pompy'],
install_requires=['numpy', 'scipy'],
install_requires=['numpy', 'scipy', 'matplotlib'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
Expand All @@ -32,10 +33,11 @@
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
],
keywords='simulation plume navigation',
project_urls={
'Documentation': 'https://pompy-docs.readthedocs.io/en/latest/',
'Source': 'https://github.com/InsectRobotics/pompy',
}
},
include_package_data=True
)

0 comments on commit dfdf36d

Please sign in to comment.