rfdetr 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
rfdetr-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.2
2
+ Name: rfdetr
3
+ Version: 0.0.1
4
+ Author: Roboflow, Inc.
5
+ Author-email: support@roboflow.com
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ Provides-Extra: dev
12
+ Requires-Dist: flake8; extra == "dev"
13
+ Requires-Dist: black==22.3.0; extra == "dev"
14
+ Requires-Dist: isort; extra == "dev"
15
+ Requires-Dist: twine; extra == "dev"
16
+ Requires-Dist: pytest; extra == "dev"
17
+ Requires-Dist: wheel; extra == "dev"
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: provides-extra
24
+ Dynamic: requires-python
25
+
26
+ rfdetr
rfdetr-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ rfdetr
@@ -0,0 +1 @@
1
+ __version__ = '0.0.1'
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.2
2
+ Name: rfdetr
3
+ Version: 0.0.1
4
+ Author: Roboflow, Inc.
5
+ Author-email: support@roboflow.com
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ Provides-Extra: dev
12
+ Requires-Dist: flake8; extra == "dev"
13
+ Requires-Dist: black==22.3.0; extra == "dev"
14
+ Requires-Dist: isort; extra == "dev"
15
+ Requires-Dist: twine; extra == "dev"
16
+ Requires-Dist: pytest; extra == "dev"
17
+ Requires-Dist: wheel; extra == "dev"
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: provides-extra
24
+ Dynamic: requires-python
25
+
26
+ rfdetr
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ rfdetr/__init__.py
4
+ rfdetr.egg-info/PKG-INFO
5
+ rfdetr.egg-info/SOURCES.txt
6
+ rfdetr.egg-info/dependency_links.txt
7
+ rfdetr.egg-info/requires.txt
8
+ rfdetr.egg-info/top_level.txt
@@ -0,0 +1,8 @@
1
+
2
+ [dev]
3
+ flake8
4
+ black==22.3.0
5
+ isort
6
+ twine
7
+ pytest
8
+ wheel
@@ -0,0 +1 @@
1
+ rfdetr
rfdetr-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
rfdetr-0.0.1/setup.py ADDED
@@ -0,0 +1,34 @@
1
+
2
+ import setuptools
3
+ from setuptools import find_packages
4
+ import re
5
+
6
+ with open("./rfdetr/__init__.py", 'r') as f:
7
+ content = f.read()
8
+ # from https://www.py4u.net/discuss/139845
9
+ version = re.search(r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]', content).group(1)
10
+
11
+ with open("README.md", "r") as fh:
12
+ long_description = fh.read()
13
+
14
+ setuptools.setup(
15
+ name="rfdetr",
16
+ version=version,
17
+ author="Roboflow, Inc.",
18
+ author_email="support@roboflow.com",
19
+ description="",
20
+ long_description=long_description,
21
+ long_description_content_type="text/markdown",
22
+ install_requires=[],
23
+ packages=find_packages(exclude=("tests",)),
24
+ extras_require={
25
+ "dev": ["flake8", "black==22.3.0", "isort", "twine", "pytest", "wheel"],
26
+ },
27
+ classifiers=[
28
+ "Programming Language :: Python :: 3",
29
+ "License :: OSI Approved :: MIT License",
30
+ "Operating System :: OS Independent",
31
+ ],
32
+ python_requires=">=3.7",
33
+ )
34
+