kopia lustrzana https://github.com/glidernet/python-ogn-client
setup.py: Fix package list
rodzic
9034e44442
commit
af3614ec5e
4
setup.py
4
setup.py
|
@ -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': [
|
||||||
|
|
Ładowanie…
Reference in New Issue