-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (29 loc) · 1.21 KB
/
setup.py
File metadata and controls
45 lines (29 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
40
41
42
43
44
45
import pathlib
import codecs
import setuptools
here = pathlib.Path(__file__).resolve().parent
with codecs.open(here.joinpath('DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='modular_client',
version = '8.4.3',
description='Modular device Python client interface for communicating with and calling remote methods on modular device servers.',
long_description=long_description,
url='https://github.com/janelia-python/modular_client_python',
author='Peter Polidoro',
author_email='peter@polidoro.io',
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
keywords='modular serial arduino device client modulardevice modular-device modular_device modularclient modular-client modular_client json json-rpc',
packages=setuptools.find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['serial_interface',
'inflection',
'sre_yield',
],
)