-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.28 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
# Copyright (c) 2019-present, Noe Casas
# All rights reserved.
#
# This source code is licensed under the license found in the LICENSE file in
# the root directory of this source tree.
from setuptools import setup, find_packages
setup(name="seqp",
version="0.1",
author="Noe Casas",
author_email="[email protected]",
description="Sequence persistence library",
keywords="sequence persistence deep learning",
license="MIT",
url="https://github.com/noe/seqp",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
python_requires='>=3.5.0',
tests_require=['pytest'],
install_requires=[
'numpy',
'h5py',
],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Text Processing',
],
)