-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (36 loc) · 1.21 KB
/
setup.py
File metadata and controls
executable file
·39 lines (36 loc) · 1.21 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
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='opv_import',
packages=find_packages(),
author="",
author_email="",
description="The import script of OPV",
long_description=open('README.md').read(),
dependency_links=[
"git+https://github.com/OpenPathView/OPV_DBRest-client.git#egg=opv_api_client-0.2",
"git+https://github.com/OpenPathView/DirectoryManagerClient.git#egg=opv_directorymanagerclient-0.1"
],
install_requires=[
"docopt",
"ExifRead",
"path.py",
"pyudev",
"geojson",
"opv_api_client",
"opv_directorymanagerclient",
"PyYAML"
],
# Active la prise en compte du fichier MANIFEST.in
include_package_data=True,
url='https://github.com/OpenPathView/OPV_importData',
entry_points={
'console_scripts': [
'opv-sd-copier = opv_import.controllers.cli.opv_sd_copier:main',
'opv-sd-configurer = opv_import.controllers.cli.opv_sd_configurer:main',
'opv-sd-cleaner = opv_import.controllers.cli.opv_sd_cleaner:main',
'opv-make-lot = opv_import.controllers.cli.opv_make_lot:main'
],
}
)