-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·53 lines (50 loc) · 1.61 KB
/
setup.py
File metadata and controls
executable file
·53 lines (50 loc) · 1.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
import os
from setuptools import setup
setup(
name = "libdlt",
version = "2.2.dev",
author = "DLT CREST Team",
author_email = "dlt@crest.iu.edu",
description = ("libdlt: DLT development modules and tools"),
license = "BSD",
keywords = "DLT libdlt tools",
url = "https://github.com/datalogistics/libdlt",
packages=['libdlt', 'libdlt.util', 'libdlt.protocol',
'libdlt.protocol.ceph', 'libdlt.protocol.ceph.rados',
'libdlt.protocol.ibp', 'libdlt.protocol.rdma', 'tools'],
package_data={'tools' : ['*.py']},
include_package_data = True,
install_requires=[
"setuptools",
"lace",
"unisrt",
"uritools",
"jsonschema",
"socketIO-client",
"requests",
"six>=1.8.0",
#"google-auth",
#"google-api-python-client",
#"google-auth-httplib2",
#"google-auth-oauthlib"
],
dependency_links=[
"git+https://github.com/periscope-ps/lace.git/@master#egg=lace",
"git+https://github.com/periscope-ps/unisrt.git/@develop#egg=unisrt"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Libraries",
"License :: OSI Approved :: BSD License",
],
entry_points = {
'console_scripts': [
'eodn_feed = tools.eodn_feed:main',
'eodn_download = tools.downloader:main',
'dlt_cli = tools.ncli:main',
'dlt_xfer = tools.dlt_xfer:main',
'pid_xfer = tools.pid_xfer:main'
]
},
options = {'bdist_rpm':{'post_install' : 'scripts/rpm_postinstall.sh'}},
)