-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.17 KB
/
setup.py
File metadata and controls
35 lines (30 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import setuptools
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
## edit below variables as per your requirements -
REPO_NAME = "datacollection"
AUTHOR_USER_NAME = "Codebugged-Research"
SRC_REPO = "src"
setuptools.setup(
name="margsoft",
version="0.0.28",
author=AUTHOR_USER_NAME,
description="data collection package",
long_description=long_description,
long_description_content_type="text/markdown",
url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
author_email="thecodebugged@gmail.com",
package_dir={'': "src"},
python_requires=">=3.6",
packages=setuptools.find_packages(where="src"),
license="MIT",
install_requires=['opencv-python',
'numpy','ultralytics'],
classifiers=[
'Intended Audience :: Developers', 'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 3.6', 'Topic :: Utilities',
'Programming Language :: Python :: 3.7', 'Topic :: Utilities',
'Programming Language :: Python :: 3.8', 'Topic :: Utilities'
], )