Skip to content

Commit

Permalink
repo: Setup file updates /more (#67)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax authored Aug 30, 2021
1 parent 284995a commit 5644e44
Show file tree
Hide file tree
Showing 15 changed files with 195 additions and 219 deletions.
2 changes: 1 addition & 1 deletion abstracts/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.11
0.0.12-dev
2 changes: 1 addition & 1 deletion aio.functional/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.7
0.0.8-dev
2 changes: 1 addition & 1 deletion aio.stream/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.2-dev
0.0.2
47 changes: 47 additions & 0 deletions aio.stream/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[metadata]
name = aio.stream
version = file: VERSION
author = Ryan Northey
author_email = ryan@synca.io
maintainer = Ryan Northey
maintainer_email = ryan@synca.io
license = Apache Software License 2.0
url = https://github.com/envoyproxy/pytooling/tree/main/aio.stream
description = Stream utils for aiohttp and aiofiles
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License

[options]
python_requires = >=3.5
py_modules = aio.stream
packages = find_namespace:
install_requires =
aiohttp
aiofiles

[options.extras_require]
test =
pytest
pytest-asyncio
pytest-coverage
pytest-patches
lint = flake8
types =
mypy
types-aiofiles
publish = wheel

[options.package_data]
* = py.typed
57 changes: 2 additions & 55 deletions aio.stream/setup.py
Original file line number Diff line number Diff line change
@@ -1,58 +1,5 @@
#!/usr/bin/env python

import os
import codecs
from setuptools import find_namespace_packages, setup # type:ignore
from setuptools import setup # type:ignore


def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()


setup(
name='aio.stream',
version=read("VERSION"),
author='Ryan Northey',
author_email='ryan@synca.io',
maintainer='Ryan Northey',
maintainer_email='ryan@synca.io',
license='Apache Software License 2.0',
url='https://github.com/envoyproxy/pytooling/aio.stream',
description='Stream utils for aiohttp and aiofiles',
long_description=read('README.rst'),
py_modules=['aio.stream'],
packages=find_namespace_packages(),
package_data={'aio.stream': ['py.typed']},
python_requires='>=3.5',
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-coverage",
"pytest-patches"],
"lint": ['flake8'],
"types": [
'mypy',
"types-aiofiles"],
"publish": ['wheel'],
},
install_requires=[
"aiohttp",
"aiofiles",
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
],
)
setup()
2 changes: 1 addition & 1 deletion aio.subprocess/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4-dev
2 changes: 1 addition & 1 deletion envoy.abstract.command/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3-dev
0.0.3
46 changes: 46 additions & 0 deletions envoy.abstract.command/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
[metadata]
name = envoy.abstract.command
version = file: VERSION
author = Ryan Northey
author_email = ryan@synca.io
maintainer = Ryan Northey
maintainer_email = ryan@synca.io
license = Apache Software License 2.0
url = https://github.com/envoyproxy/pytooling/tree/main/envoy.abstract.command
description = "Abstract command definitions for Envoy proxy's CI"
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License

[options]
python_requires = >=3.5
py_modules = envoy.abstract.command
packages = find_namespace:
install_requires =
abstracts>=0.0.11

[options.extras_require]
test =
pytest
pytest-asyncio
pytest-coverage
pytest-patches
lint = flake8
types =
mypy
types-frozendict
publish = wheel

[options.package_data]
* = py.typed
56 changes: 2 additions & 54 deletions envoy.abstract.command/setup.py
Original file line number Diff line number Diff line change
@@ -1,57 +1,5 @@
#!/usr/bin/env python

import os
import codecs
from setuptools import find_namespace_packages, setup # type:ignore
from setuptools import setup # type:ignore


def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()


setup(
name='envoy.abstract.command',
version=read("VERSION"),
author='Ryan Northey',
author_email='ryan@synca.io',
maintainer='Ryan Northey',
maintainer_email='ryan@synca.io',
license='Apache Software License 2.0',
url='https://github.com/envoyproxy/pytooling/envoy.abstract.command',
description="Abstract command definitions for Envoy proxy's CI",
long_description=read('README.rst'),
py_modules=['envoy.abstract.command'],
packages=find_namespace_packages(),
package_data={'envoy.abstract.command': ['py.typed']},
python_requires='>=3.5',
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-coverage",
"pytest-patches"],
"lint": ['flake8'],
"types": [
'mypy',
"types-frozendict"],
"publish": ['wheel'],
},
install_requires=[
"abstracts>=0.0.9",
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
],
)
setup()
2 changes: 1 addition & 1 deletion envoy.base.utils/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3-dev
0.0.3
44 changes: 44 additions & 0 deletions envoy.base.utils/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[metadata]
name = envoy.base.utils
version = file: VERSION
author = Ryan Northey
author_email = ryan@synca.io
maintainer = Ryan Northey
maintainer_email = ryan@synca.io
license = Apache Software License 2.0
url = https://github.com/envoyproxy/pytooling/tree/main/envoy.base.utils
description = "A collection of utils used in Envoy proxy's CI"
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License

[options]
python_requires = >=3.5
py_modules = envoy.base.utils
packages = find_namespace:
install_requires = pyyaml

[options.extras_require]
test =
pytest
pytest-coverage
pytest-patches
lint = flake8
types =
mypy
types-pyyaml
publish = wheel

[options.package_data]
* = py.typed
52 changes: 2 additions & 50 deletions envoy.base.utils/setup.py
Original file line number Diff line number Diff line change
@@ -1,53 +1,5 @@
#!/usr/bin/env python

import os
import codecs
from setuptools import find_namespace_packages, setup # type:ignore
from setuptools import setup # type:ignore


def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()


setup(
name='envoy.base.utils',
version=read("VERSION"),
author='Ryan Northey',
author_email='ryan@synca.io',
maintainer='Ryan Northey',
maintainer_email='ryan@synca.io',
license='Apache Software License 2.0',
url='https://github.com/envoyproxy/pytooling/envoy.base.utils',
description='A collection of utils used in Envoy proxy CI',
long_description=read('README.rst'),
py_modules=['envoy.base.utils'],
packages=find_namespace_packages(),
package_data={'envoy.base.utils': ['py.typed']},
python_requires='>=3.5',
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-coverage",
"pytest-patches"],
"lint": ['flake8'],
"types": ['mypy', "types-pyyaml"],
"publish": ['wheel'],
},
install_requires=["pyyaml"],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
],
)
setup()
2 changes: 1 addition & 1 deletion envoy.docker.utils/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.2-dev
0.0.2
43 changes: 43 additions & 0 deletions envoy.docker.utils/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[metadata]
name = envoy.docker.utils
version = file: VERSION
author = Ryan Northey
author_email = ryan@synca.io
maintainer = Ryan Northey
maintainer_email = ryan@synca.io
license = Apache Software License 2.0
url = https://github.com/envoyproxy/pytooling/tree/main/envoy.docker.utils
description = "Docker utils used in Envoy proxy's CI"
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License

[options]
python_requires = >=3.5
py_modules = envoy.docker.utils
packages = find_namespace:
install_requires = aiodocker

[options.extras_require]
test =
pytest
pytest-asyncio
pytest-coverage
pytest-patches
lint = flake8
types = mypy
publish = wheel

[options.package_data]
* = py.typed
Loading

0 comments on commit 5644e44

Please sign in to comment.