setup.py 955 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
from os import path as osp
rusty1s's avatar
rusty1s committed
2

rusty1s's avatar
rusty1s committed
3
4
from setuptools import setup, find_packages

rusty1s's avatar
rusty1s committed
5
6
__version__ = '0.1.0'
url = 'https://github.com/rusty1s/pytorch_spline_conv'
rusty1s's avatar
rusty1s committed
7

rusty1s's avatar
rusty1s committed
8
install_requires = ['cffi', 'torch-unique']
rusty1s's avatar
rusty1s committed
9
10
11
12
13
setup_requires = ['pytest-runner', 'cffi']
tests_require = ['pytest', 'pytest-cov']

setup(
    name='torch_spline_conv',
rusty1s's avatar
rusty1s committed
14
15
16
    version=__version__,
    description='PyTorch Implementation of the Spline-Based Convolution'
    'Operator of SplineCNN',
rusty1s's avatar
rusty1s committed
17
18
    author='Matthias Fey',
    author_email='matthias.fey@tu-dortmund.de',
rusty1s's avatar
rusty1s committed
19
20
21
22
23
24
    url=url,
    download_url='{}/archive/{}.tar.gz'.format(url, __version__),
    keywords=[
        'pytorch', 'cnn', 'spline_cnn', 'geometric-deep-learning', 'graph',
        'mesh'
    ],
rusty1s's avatar
rusty1s committed
25
26
27
28
29
30
31
    install_requires=install_requires,
    setup_requires=setup_requires,
    tests_require=tests_require,
    packages=find_packages(exclude=['build']),
    ext_package='',
    cffi_modules=[osp.join(osp.dirname(__file__), 'build.py:ffi')],
)