-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (37 loc) · 1.31 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Fluence",
version="0.1.8",
author="Prajjwal Bhargava",
author_email="[email protected]",
description=(
"Pytorch based deep learning library focussed on providing computationally"
" efficient low resource methods and algorithms for NLP"
),
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="attention pytorch transformers",
license="Apache",
url="https://github.com/prajjwal1/fluence",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
"dataclasses;python_version<'3.7'",
"tqdm >= 4.27",
],
python_requires=">=3.6",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)