-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.17 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
from setuptools import find_packages, setup
from setuptools_rust import RustExtension
setup_requires = ['setuptools-rust>=0.10.2']
install_requires = ['numpy']
test_requires = install_requires + ['pytest']
setup(
name='superMASS',
description='Python bindings for the MASS algorithm implemented in rust.',
license='MIT',
version='0.1.0',
author='Carlos Gutiérrez et al.',
author_email='[email protected]',
url='https://github.com/superMASS/superMASS',
# download_url='https://github.com/user/reponame/archive/v_01.tar.gz',
keywords=['MASS', 'time series', 'pattern matching',
'similarity search', 'python', 'rust'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
rust_extensions=[RustExtension(
'superMASS.mass_rs',
'./Cargo.toml',
)],
install_requires=install_requires,
setup_requires=setup_requires,
test_requires=test_requires,
packages=find_packages(),
zip_safe=False,
)