-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 1.08 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="pytorch-swem",
version="0.3.5",
author="Sebastian Schönnenbeck",
author_email="[email protected]",
url="https://github.com/schoennenbeck/swem",
project_urls={"Documentation": "https://pytorch-swem.readthedocs.io/"},
description="Pytorch implementation of the simple word embedding model.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
install_requires=["torch >= 1"],
license="MIT",
python_requires=">=3.8",
extras_require={
"dev": [
"black",
"isort",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"coveralls",
"coverage",
],
"docs": [
"sphinx",
"myst-parser",
"nbsphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
],
},
)