File tree Expand file tree Collapse file tree 2 files changed +27
-18
lines changed
Expand file tree Collapse file tree 2 files changed +27
-18
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import setuptools
2+ from setuptools import find_packages
3+
4+ with open ("README.md" , "r" ) as fh :
5+ long_description = fh .read ()
6+
7+ with open ('requirements.txt' ) as f :
8+ requirements = f .read ().splitlines ()
9+
10+ setuptools .setup (
11+ name = "roboflow" , # Replace with your own username
12+ version = "0.1.0" ,
13+ author = "Roboflow Team" ,
14+ 15+ description = "Pip package for Roboflow." ,
16+ long_description = long_description ,
17+ long_description_content_type = "text/markdown" ,
18+ url = "https://github.com/roboflow-ai/roboflow-python" ,
19+ install_requires = requirements ,
20+ packages = find_packages (exclude = ('tests' ,)),
21+ classifiers = [
22+ "Programming Language :: Python :: 3" ,
23+ "License :: OSI Approved :: MIT License" ,
24+ "Operating System :: OS Independent" ,
25+ ],
26+ python_requires = '>=3.6' ,
27+ )
You can’t perform that action at this time.
0 commit comments