annotate lib/devices_shared/setup.py @ 1561:fc45f01f66c2 dependabot/pip/service/colplay/twisted-19.7.0

Bump twisted from 16.0.0 to 19.7.0 in /service/colplay Bumps [twisted](https://github.com/twisted/twisted) from 16.0.0 to 19.7.0. - [Release notes](https://github.com/twisted/twisted/releases) - [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst) - [Commits](https://github.com/twisted/twisted/compare/twisted-16.0.0...twisted-19.7.0) Signed-off-by: dependabot[bot] <support@github.com>
author dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
date Fri, 14 Feb 2020 10:01:19 +0000
parents 07b5df124209
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1344
4d3b31903c04 switch to setuptools and 'install_requires'
drewp <drewp@bigasterisk.com>
parents: 1343
diff changeset
1 from setuptools import setup
1336
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
2
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
3 setup(
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
4 name='devices_shared',
1438
07b5df124209 release 0.5.0
drewp <drewp@bigasterisk.com>
parents: 1435
diff changeset
5 version='0.5.0',
1336
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6 packages=['devices_shared'],
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
7 package_dir={'devices_shared': ''},
1344
4d3b31903c04 switch to setuptools and 'install_requires'
drewp <drewp@bigasterisk.com>
parents: 1343
diff changeset
8 install_requires=[
1336
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
9 'numpy',
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
10 'imageio',
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
11 'rdflib',
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
12 ],
1438
07b5df124209 release 0.5.0
drewp <drewp@bigasterisk.com>
parents: 1435
diff changeset
13 url='https://projects.bigasterisk.com/devices-shared/devices_shared-0.5.0.tar.gz',
1336
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
14 author='Drew Perttula',
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
15 author_email='drewp@bigasterisk.com',
7993c7bcd04a make devices_shared into lib
drewp <drewp@bigasterisk.com>
parents:
diff changeset
16 )