-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.12 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.12 KB
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
from skbuild import setup
with open('README.md') as readme:
long_description = readme.read()
setup(
name='pygorpho',
version='1.0.0',
description='Python bindings for gorpho',
url='https://pygorpho.readthedocs.io/',
project_urls={
'Documentation':
'https://pygorpho.readthedocs.io/en/latest/api-doc.html',
'PyPI': 'https://pypi.org/project/pygorpho/',
'Source': 'https://github.com/patmjen/pygorpho',
},
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='Patrick M. Jensen',
author_email='patmjen@gmail.com',
package_dir={'': 'src'},
packages=["pygorpho"],
setup_requires=['numpy', 'scikit-build>=0.7.0'],
install_requires=['numpy', 'scikit-build>=0.7.0'],
cmake_languages=('CUDA',),
cmake_minimum_required_version='3.10',
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)