Skip to content

Commit

Permalink
Fixed Manifest for Pypy upload.
Browse files Browse the repository at this point in the history
  • Loading branch information
tbetcke committed Dec 30, 2019
1 parent 3d3550a commit c649efd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ graft bempp
global-exclude *.py[cod] *.so
prune **/__pycache__
prune **/.pytest_cache
prune bempp/test_data



2 changes: 1 addition & 1 deletion bempp/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.9"
__version__ = "0.1.0"

14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
from setuptools import setup
from setuptools import setup, find_packages

from bempp import version

setup(
name='Bempp-cl',
version=version.__version__,
packages=['bempp'],
author="Timo Betcke",
author_email="[email protected]",
description="The Bempp boundary element library",
url="https://github.com/bempp/bempp-cl",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license='MIT',
include_package_data=True,
python_requires='>=3.6',
)

0 comments on commit c649efd

Please sign in to comment.