Mercurial > code > home > repos > homeauto
comparison lib/standardservice/setup.py @ 541:3b4915ab7b74
switch to setuptools and 'install_requires'
Ignore-this: ffb0aa596145b0ab6ce9983b399ef58b
author | drewp@bigasterisk.com |
---|---|
date | Thu, 25 Apr 2019 22:59:43 -0700 |
parents | f09fc1a18b66 |
children | 5ab84b8a706b |
comparison
equal
deleted
inserted
replaced
540:4ce968eecaa9 | 541:3b4915ab7b74 |
---|---|
1 from distutils.core import setup | 1 from setuptools import setup |
2 | 2 |
3 setup( | 3 setup( |
4 name='standardservice', | 4 name='standardservice', |
5 version='0.3.0', | 5 version='0.3.0', |
6 packages=['standardservice'], | 6 packages=['standardservice'], |
7 package_dir={'standardservice': ''}, | 7 package_dir={'standardservice': ''}, |
8 requires=[], | |
9 url='https://projects.bigasterisk.com/standardservice/standardservice-0.3.0.tar.gz', | 8 url='https://projects.bigasterisk.com/standardservice/standardservice-0.3.0.tar.gz', |
10 author='Drew Perttula', | 9 author='Drew Perttula', |
11 author_email='drewp@bigasterisk.com', | 10 author_email='drewp@bigasterisk.com', |
12 ) | 11 ) |