setup.py: Fix package list

pull/8/head
Fabian P. Schmidt 2016-03-29 15:13:16 +02:00
rodzic 9034e44442
commit af3614ec5e
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from os import path from os import path
from setuptools import setup from setuptools import setup, find_packages
from ogn.client.settings import PACKAGE_VERSION from ogn.client.settings import PACKAGE_VERSION
@ -32,7 +32,7 @@ setup(
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
], ],
keywords='gliding ogn', keywords='gliding ogn',
packages=['ogn.parser', 'ogn.client'], packages=['ogn.{}'.format(package) for package in find_packages(where='ogn')],
install_requires=[], install_requires=[],
extras_require={ extras_require={
'dev': [ 'dev': [