-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
44 lines (40 loc) · 1.13 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = ""
setup(
long_description=readme,
name="fairtorch",
version="0.1.2",
python_requires="==3.*,>=3.6.5",
author="Masashi Sode",
author_email="masashi.sode@gmail.com",
maintainer="Akihiko Fukuchi",
maintainer_email="fukuchi@cl.rcast.u-tokyo.ac.jp",
license="MIT",
packages=["fairtorch"],
package_dir={"": "."},
package_data={},
install_requires=["torch==1.*,>=1.6.0"],
extras_require={
"dev": [
"autopep8==1.*,>=1.5.2",
"black==19.*,>=19.10.0.b0",
"flake8==3.*,>=3.8.2",
"isort==4.*,>=4.3.21",
"matplotlib==3.*,>=3.3.3",
"mypy==0.*,>=0.782.0",
"numpy==1.*,>=1.19.4",
"pandas==1.*,>=1.1.4",
"pytest==6.*,>=6.0.1",
"scikit-learn==0.*,>=0.23.2",
"seaborn==0.*,>=0.11.0",
"xlrd==1.*,>=1.2.0",
]
},
)