Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-scatter
Commits
4e03ddd1
Commit
4e03ddd1
authored
Dec 24, 2017
by
rusty1s
Browse files
fixed version call
parent
5b2cf9ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
setup.py
setup.py
+3
-4
No files found.
setup.py
View file @
4e03ddd1
from
os
import
path
as
osp
from
setuptools
import
setup
,
find_packages
from
torch_scatter
import
__version__
import
build
# noqa
install_requires
=
[
'cffi'
]
...
...
@@ -12,7 +10,7 @@ docs_require = ['Sphinx', 'sphinx_rtd_theme']
setup
(
name
=
'torch_scatter'
,
version
=
__version__
,
version
=
'0.1.0'
,
description
=
'PyTorch extension for various scatter methods'
,
url
=
'https://github.com/rusty1s/pytorch_scatter'
,
author
=
'Matthias Fey'
,
...
...
@@ -22,4 +20,5 @@ setup(
tests_require
=
tests_require
+
docs_require
,
packages
=
find_packages
(
exclude
=
[
'build'
]),
ext_package
=
''
,
cffi_modules
=
[
osp
.
join
(
osp
.
dirname
(
__file__
),
'build.py:ffi'
)],
)
cffi_modules
=
[
osp
.
join
(
osp
.
dirname
(
__file__
),
'build.py:ffi'
)],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment