comparison lib/devices_shared/setup.py @ 1344:4d3b31903c04

switch to setuptools and 'install_requires' Ignore-this: ffb0aa596145b0ab6ce9983b399ef58b darcs-hash:50e2ae0c03d3d1dfaadd112aa5d23171d6b69f7a
author drewp <drewp@bigasterisk.com>
date Thu, 25 Apr 2019 22:59:43 -0700
parents 652607cf00dc
children 68d559a2c2ae
comparison
equal deleted inserted replaced
1343:652607cf00dc 1344:4d3b31903c04
1 from distutils.core import setup 1 from setuptools import setup
2 2
3 setup( 3 setup(
4 name='devices_shared', 4 name='devices_shared',
5 version='0.2.0', 5 version='0.2.0',
6 packages=['devices_shared'], 6 packages=['devices_shared'],
7 package_dir={'devices_shared': ''}, 7 package_dir={'devices_shared': ''},
8 requires=[ 8 install_requires=[
9 'numpy', 9 'numpy',
10 'imageio', 10 'imageio',
11 'rdflib', 11 'rdflib',
12 ], 12 ],
13 url='https://projects.bigasterisk.com/devices_shared/devices_shared-0.2.0.tar.gz', 13 url='https://projects.bigasterisk.com/devices_shared/devices_shared-0.2.0.tar.gz',