forked from taichi-dev/taichi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PyPI] Remove dill, pytest, pytest-xdist from end-user hard dependenc…
…ies (taichi-dev#1477)
- Loading branch information
Showing
2 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,36 +19,31 @@ | |
packages = setuptools.find_packages() + ['taichi.examples'] | ||
print(packages) | ||
|
||
setuptools.setup( | ||
name=project_name, | ||
packages=packages, | ||
version=version, | ||
description='The Taichi Programming Language', | ||
author='Yuanming Hu', | ||
author_email='[email protected]', | ||
url='https://github.com/taichi-dev/taichi', | ||
install_requires=[ | ||
'numpy', | ||
'pybind11>=2.5.0', | ||
'colorama', | ||
'setuptools', | ||
'astor', | ||
'dill', | ||
# For testing: | ||
'pytest', | ||
'pytest-xdist', | ||
], | ||
data_files=[('lib', data_files)], | ||
keywords=['graphics', 'simulation'], | ||
license='MIT', | ||
include_package_data=True, | ||
entry_points={ | ||
'console_scripts': [ | ||
'ti=taichi.main:main', | ||
'tid=taichi.main:main_debug', | ||
], | ||
}, | ||
classifiers=classifiers, | ||
has_ext_modules=lambda: True) | ||
setuptools.setup(name=project_name, | ||
packages=packages, | ||
version=version, | ||
description='The Taichi Programming Language', | ||
author='Taichi developers', | ||
author_email='[email protected]', | ||
url='https://github.com/taichi-dev/taichi', | ||
install_requires=[ | ||
'numpy', | ||
'pybind11>=2.5.0', | ||
'colorama', | ||
'setuptools', | ||
'astor', | ||
], | ||
data_files=[('lib', data_files)], | ||
keywords=['graphics', 'simulation'], | ||
license='MIT', | ||
include_package_data=True, | ||
entry_points={ | ||
'console_scripts': [ | ||
'ti=taichi.main:main', | ||
'tid=taichi.main:main_debug', | ||
], | ||
}, | ||
classifiers=classifiers, | ||
has_ext_modules=lambda: True) | ||
|
||
# Note: this is a template setup.py used by python/build.py |