-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
27 lines (26 loc) · 1.03 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
from setuptools import setup, find_packages
setup(
author="CS50",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Education",
"Programming Language :: Python :: 3.6",
"Topic :: Education",
"Topic :: Utilities"
],
license="GPLv3",
description="This is compare50, with which you can compare files for similarities.",
long_description="This is compare50, with which you can compare files for similarities.",
install_requires=["attrs>=18,<21", "intervaltree>=3,<4", "lib50>=2,<4", "numpy>=1.15,<2", "pygments>=2.2,<3", "jinja2>=3,<4", "termcolor>=1.1.0,<2", "tqdm>=4.32,<5"],
extras_require = {
"develop": ["sphinx", "sphinx_rtd_theme", "sphinx-autobuild", "line_profiler"]
},
keywords=["compare", "compare50"],
name="compare50",
python_requires=">=3.5",
packages=find_packages(exclude=["tests"]),
scripts=["bin/compare50"],
url="https://github.com/cs50/compare50",
version="1.2.6",
include_package_data=True,
)