-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
32 lines (29 loc) · 1005 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as readme_file:
README = readme_file.read()
with open('requirements.txt', encoding="utf-8") as requirements_file:
REQUIREMENTS = requirements_file.read().splitlines()
setup(
name="Harmonization",
version="0.0.9",
description="Aligning Human & Machine vision",
long_description=README,
long_description_content_type="text/markdown",
author="Thomas FEL",
author_email="thomas_fel@brown.edu",
license="MIT",
install_requires=REQUIREMENTS,
extras_require={
"tests": ["pytest", "pylint"],
"docs": ["mkdocs", "mkdocs-material", "numkdoc"],
},
packages=find_packages(),
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)