Mercurial > libervia-pubsub
comparison setup.py @ 373:26e46a3043e5
fix paths in setup.py (sat_pubsub -> src)
author | W. Martin Borgert <debacle@debian.org> |
---|---|
date | Sun, 04 Mar 2018 21:06:23 +0100 |
parents | bfbc84057c0e |
children | c56a728412f1 |
comparison
equal
deleted
inserted
replaced
372:d3d63653141d | 373:26e46a3043e5 |
---|---|
45 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | 45 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
46 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 46 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
47 | 47 |
48 import sys | 48 import sys |
49 from setuptools import setup | 49 from setuptools import setup |
50 from sat_pubsub import __version__ | 50 from src import __version__ |
51 | 51 |
52 | 52 |
53 # seen here: http://stackoverflow.com/questions/7275295 | 53 # seen here: http://stackoverflow.com/questions/7275295 |
54 try: | 54 try: |
55 from setuptools.command import egg_info | 55 from setuptools.command import egg_info |
85 description=u'XMPP Publish-Subscribe Service Component, build for the need of the « Salut à Toi » project', | 85 description=u'XMPP Publish-Subscribe Service Component, build for the need of the « Salut à Toi » project', |
86 maintainer='Jérôme Poisson', | 86 maintainer='Jérôme Poisson', |
87 maintainer_email='goffi@goffi.org', | 87 maintainer_email='goffi@goffi.org', |
88 url='http://repos.goffi.org/sat_pubsub', | 88 url='http://repos.goffi.org/sat_pubsub', |
89 license='AGPLv3+', | 89 license='AGPLv3+', |
90 package_dir={'sat_pubsub': 'src'}, | 90 package_dir={'sat_pubsub': 'src', |
91 'twisted': 'src/twisted'}, | |
91 packages=[ | 92 packages=[ |
92 'sat_pubsub', | 93 'sat_pubsub', |
93 'sat_pubsub.test', | 94 'sat_pubsub.test', |
94 'twisted.plugins', | 95 'twisted.plugins', |
95 ], | 96 ], |
96 package_data={'twisted.plugins': ['twisted/plugins/pubsub.py']}, | 97 package_data={'twisted.plugins': ['src/twisted/plugins/pubsub.py']}, |
97 data_files=[('share/sat_pubsub', ['db/pubsub.sql'])], | 98 data_files=[('share/sat_pubsub', ['db/pubsub.sql'])], |
98 zip_safe=False, | 99 zip_safe=False, |
99 install_requires=install_requires, | 100 install_requires=install_requires, |
100 ) | 101 ) |