-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
29 lines (28 loc) · 1.03 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
from setuptools import find_packages
from setuptools import setup
setup(name='keras_gcnn',
version='1.0',
description='Group-equivariant layers for Keras',
author='Bas Veeling',
author_email='[email protected]',
url='https://github.com/basveeling/keras-gcnn',
install_requires=['GrouPy'],
dependency_links=[
'git+https://github.com/nom/GrouPy#egg=GrouPy' # tscohen/GrouPy misses D4->Z2 code.
],
extras_require={
'tests': ['pytest',
'pytest-pep8',
'pytest-xdist',
'pytest-cov'],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())