-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
42 lines (40 loc) · 1.37 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="backprop",
version="0.1.3",
author="Backprop",
author_email="[email protected]",
description="Backprop",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/backprop-ai/backprop",
packages=setuptools.find_packages(),
project_urls={
"Bug Tracker": "https://github.com/backprop-ai/backprop/issues",
"Documentation": "https://backprop.readthedocs.io/en/latest/",
"Source Code": "https://github.com/backprop-ai/backprop",
},
install_requires=[
"transformers>=4.3.2,<4.5.0",
"sentence_transformers>=0.4.1.2",
"torch<1.8.0",
"torchvision<0.9.0",
"torchtext<0.9.0",
"ftfy",
"pytorch_lightning>=1.2.0,<1.3.0",
"dill",
"efficientnet_pytorch"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
],
python_requires=">=3.6",
)