-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathsetup.py
46 lines (43 loc) · 1.62 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
44
45
46
from distutils.core import setup
from setuptools import find_packages
import os
import codecs
setup_path = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(setup_path, 'README.md'), encoding='utf-8-sig') as f:
README = f.read()
setup(name='sigver',
version='0.2',
url='https://github.com/luizgh/sigver',
maintainer='Luiz G. Hafemann',
maintainer_email='[email protected]',
description='Signature verification package, for learning representations from signature '
'data, training user-dependent classifiers, meta-training classifiers.',
long_description=README,
author='Luiz G. Hafemann',
author_email='[email protected]',
license='BSD 3-clause "New" or "Revised License"',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
install_requires=[
'numpy>=1.10.4',
'torch>=0.4.1',
'torchvision>=0.2.1',
'scikit-learn>=0.19.0',
'matplotlib>=2.0',
'tqdm',
'scikit-image',
'visdom_logger'
],
python_requires='>=3',
dependency_links=[
'git+https://github.com/luizgh/visdom_logger.git@master#egg=visdom_logger-0'
],
packages=find_packages())