-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 957 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 957 Bytes
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 bijou import __version__
import setuptools
desc = 'A fastai-like framework for training, tuning and probing pytorch models, which is compatible with pytorch_geometric.'
with open("README.md", 'r') as fh:
long_description = fh.read()
setuptools.setup(
name="bijou",
version=__version__,
author="hitlic",
author_email="liuchen.lic@gmail.com",
license='MIT',
description=desc,
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/hitlic/bijou",
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
keywords='',
packages=setuptools.find_packages(exclude=['examples', 'datasets',]),
py_modules=[],
install_requires=['torch > 1.1', 'tqdm > 4.40', 'matplotlib > 3.1', 'networkx >= 2.3', 'requests > 2.20.0'],
python_requires='>=3.5'
)