Skip to content

Commit 8d6c3e0

Browse files
author
Brad Dwyer
authored
Merge pull request #4 from roboflow-ai/setup_python
Create setup.py
2 parents 6d277fb + b2544dd commit 8d6c3e0

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
author_email="[email protected]",
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+
)

0 commit comments

Comments
 (0)