-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 855 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 855 Bytes
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
from setuptools import setup, find_packages
setup(
name='lpgen',
version='0.1.0',
description='Korean License Plate Image Generator with Warping and Augmentation',
author='J. Park (againeureka)',
author_email='jpark@keti.re.kr',
py_modules=['lpgen'], # <-- py 파일 단독일 경우
packages=['lpgen'],
include_package_data=True, # <-- assets 추가
package_data={
"lpgen": ["assets/**/*"], # 모든 하위 파일 포함
},
install_requires=[
'opencv-python',
'numpy',
],
entry_points={
'console_scripts': [
'lpgen = lpgen:main' # 형식: 커맨드명 = 모듈이름:함수이름
]
},
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
)