forked from guillaume-chevalier/python-conv-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.53 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
38
39
40
41
42
43
from setuptools import setup
# from distutils.core import setup
with open('README.rst') as _f:
_README_RST = _f.read()
_VERSION = '0.1'
setup(
name='conv',
version=_VERSION,
description='A lightweight library to do for-loop-styled convolution '
'passes on your iterable objects (e.g.: on a list).',
long_description=_README_RST,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
'Intended Audience :: Information Technology',
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
url='https://github.com/guillaume-chevalier/python-conv-lib',
download_url='https://github.com/guillaume-chevalier/python-conv-lib/tarball/{}'.format(_VERSION),
author='Guillaume Chevalier',
author_email='guillaume-chevalier@outlook.com',
packages=['conv'],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
include_package_data=True,
license='MIT',
keywords='convolution conv conv1d conv2d convolve convolved'
)