-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 814 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 814 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='dgrpc',
version='0.1.0',
description='A package which implements distributed agents using grpc.',
author='Geoff Lawler',
author_email='glawler@isi.edu',
url='https://github.com/ISIEdgeLab/distributed_agents',
download_url='https://github.com/ISIEdgeLab/distributed_agents',
packages=['dgrpc'],
include_package_data=True,
requires=['PyYAML', 'grpcio'],
scripts=['bin/agent_server.py'],
data_files=[
('/etc/dgrpc', ['etc/dgrpc.conf']),
],
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD',
'Programming Language :: Python',
]
)