Skip to content

Commit 3358196

Browse files
authored
Merge pull request #6 from roboflow-ai/pip-package-changes
pip package changes
2 parents 03d837e + 0c9416c commit 3358196

File tree

4 files changed

+25
-11
lines changed

4 files changed

+25
-11
lines changed

.DS_Store

6 KB
Binary file not shown.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ opencv-python==4.5.3.56
99
Pillow
1010
pyparsing==2.4.7
1111
python-dateutil
12-
python-dotenv==0.18.0
12+
python-dotenv
1313
requests==2.25.1
1414
six
1515
urllib3==1.26.6

roboflow/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
CLASSIFICATION_MODEL = "ClassificationModel"
33
PREDICTION_OBJECT = "Prediction"
44
API_URL = "https://api.roboflow.com"
5+
56
from dotenv import load_dotenv
67

7-
load_dotenv()
8+
load_dotenv()

setup.py

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,32 @@
44
with open("README.md", "r") as fh:
55
long_description = fh.read()
66

7-
with open('requirements.txt') as f:
8-
requirements = f.read().splitlines()
9-
107
setuptools.setup(
118
name="roboflow", # Replace with your own username
12-
version="0.1.0",
13-
author="Roboflow Team",
14-
author_email="[email protected]",
15-
description="Pip package for Roboflow.",
9+
version="0.1.2",
10+
author="Palash Shah",
11+
author_email="[email protected]",
12+
description="Ergonomic machine learning",
1613
long_description=long_description,
1714
long_description_content_type="text/markdown",
18-
url="https://github.com/roboflow-ai/roboflow-python",
19-
install_requires=requirements,
15+
url="https://github.com/Palashio/libra",
16+
install_requires=[
17+
"certifi==2021.5.30",
18+
"chardet==4.0.0",
19+
"cycler==0.10.0",
20+
"idna==2.10",
21+
"kiwisolver==1.3.1",
22+
"matplotlib",
23+
"numpy==1.19.5",
24+
"opencv-python==4.5.3.56",
25+
"pillow",
26+
"pyparsing==2.4.7",
27+
"python-dateutil",
28+
"python-dotenv",
29+
"requests==2.25.1",
30+
"six",
31+
"urllib3==1.26.6",
32+
],
2033
packages=find_packages(exclude=('tests',)),
2134
classifiers=[
2235
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)