Skip to content

Commit 0791fb3

Browse files
authored
Merge pull request #266 from raysect/development
Made cython a dependency and removed c files from the distribution.
2 parents e11b8da + 0bc7496 commit 0791fb3

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include README.md CHANGELOG.txt LICENSE.txt CONTRIBUTING.txt AUTHORS.txt MANIFEST.in setup.py .gitignore
22
include raysect/VERSION
3-
recursive-include raysect *.py *.pyx *.pxd *.csv *.json *.c
3+
recursive-include raysect *.py *.pyx *.pxd *.csv *.json
44
recursive-include demos *.py *.pyx *.pxd *.csv *.obj *.rsm
55
recursive-include docs *

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,9 @@
8787
"Topic :: Multimedia :: Graphics :: 3D Rendering",
8888
"Topic :: Scientific/Engineering :: Physics"
8989
],
90-
install_requires=[
91-
'numpy',
92-
],
90+
install_requires=['numpy', 'cython>=0.28'],
9391
packages=find_packages(),
9492
include_package_data=True,
9593
zip_safe= False,
96-
ext_modules=extensions)
97-
94+
ext_modules=extensions
95+
)

0 commit comments

Comments
 (0)