Commit
·
b1d613e
1
Parent(s):
923bdaf
pyproject.tom
Browse files- pyproject.toml +20 -0
- setup.py +0 -22
pyproject.toml
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[build-system]
|
2 |
+
requires = ["setuptools>=42", "wheel"]
|
3 |
+
build-backend = "setuptools.build_meta"
|
4 |
+
|
5 |
+
[project]
|
6 |
+
name = "medvqa"
|
7 |
+
version = "0.122"
|
8 |
+
description = "Your project description here"
|
9 |
+
readme = "README.md"
|
10 |
+
requires-python = ">=3.6"
|
11 |
+
dependencies = [
|
12 |
+
# Add your dependencies here
|
13 |
+
]
|
14 |
+
|
15 |
+
[project.scripts]
|
16 |
+
medvqa = "medvqa.cli:main"
|
17 |
+
|
18 |
+
[tool.setuptools.packages.find]
|
19 |
+
where = ["."]
|
20 |
+
include = ["*", "competitions/**/"]
|
setup.py
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
from setuptools import setup, find_packages
|
2 |
-
# read the contents of your README file
|
3 |
-
from pathlib import Path
|
4 |
-
this_directory = Path(__file__).parent
|
5 |
-
long_description = (this_directory / "README.md").read_text()
|
6 |
-
|
7 |
-
setup(
|
8 |
-
name='medvqa',
|
9 |
-
version='0.121',
|
10 |
-
packages=find_packages() +
|
11 |
-
find_packages(include=['*'], where='./competitions/**/'),
|
12 |
-
entry_points={
|
13 |
-
'console_scripts': [
|
14 |
-
'medvqa=medvqa.cli:main',
|
15 |
-
],
|
16 |
-
},
|
17 |
-
install_requires=[
|
18 |
-
# Add your dependencies here
|
19 |
-
],
|
20 |
-
long_description=long_description,
|
21 |
-
long_description_content_type='text/markdown'
|
22 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|