-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import setuptools
# version fetch
from voltools import __version__
# readme fetch
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='voltools',
version=__version__,
description='CUDA-accelerated 3D affine transformations for NumPy and CuPy',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='the-lay',
author_email='[email protected]',
url='https://github.com/the-lay/voltools',
platforms=['any'],
install_requires=[
'numpy',
'scipy'
],
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='tests',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
]
)