-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (35 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name="zip-fit",
version="1.0.8",
author="Elyas Obbad",
author_email="[email protected]",
description="Data Selection via Compression-Based Alignment",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"numpy>=1.21.0",
"lz4>=3.1.10",
"datasets>=1.17.0",
],
extras_require={
"dev": [
"pytest>=6.0",
"flake8>=3.9",
"black>=21.0",
"mypy>=0.910",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Linguistic",
"Intended Audience :: Developers",
],
keywords="data selection compression zip-fit nlp language models",
include_package_data=True,
)