-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 853 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
33
34
import re
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
with open("src/version.py", "r") as f:
version = re.search(r"__version__ = \"(.*?)\"", f.read()).group(1)
setuptools.setup(
name="src",
version=version,
author="Sofiane Soussi",
author_email="sofiane.soussi@gmail.com",
description="Skin legion diagnosis experimentation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sofglide/lesion-diagnosis",
python_requires=">=3.8",
packages=["src"],
include_package_data=True,
install_requires=[
"pandas>=0.23",
"torch>=0.4",
"torchvision>=0.2",
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)