Skip to content

Commit

Permalink
repo: Setup file updates (#68)
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 fd4e1d4 commit 284995a
Show file tree
Hide file tree
Showing 8 changed files with 91 additions and 98 deletions.
2 changes: 1 addition & 1 deletion abstracts/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.10
0.0.11
1 change: 0 additions & 1 deletion abstracts/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ packages = find_namespace:
[options.extras_require]
test =
pytest
pytest-asyncio
pytest-coverage
pytest-patches
lint = flake8
Expand Down
2 changes: 1 addition & 1 deletion aio.functional/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.7-dev
0.0.7
42 changes: 42 additions & 0 deletions aio.functional/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[metadata]
name = aio.functional
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.functional
description = A collection of functional utils for asyncio
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.functional
packages = find_namespace:

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

[options.package_data]
* = py.typed
47 changes: 2 additions & 45 deletions aio.functional/setup.py
Original file line number Diff line number Diff line change
@@ -1,48 +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.functional',
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.functional',
description='A collection of functional utils for asyncio',
long_description=read('README.rst'),
py_modules=['aio.functional'],
packages=find_namespace_packages(),
package_data={'aio.functional': ['py.typed']},
python_requires='>=3.5',
extras_require={
"test": ["pytest", "pytest-asyncio", "pytest-coverage"],
"lint": ['flake8'],
"types": ['mypy'],
"publish": ['wheel'],
},
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-dev
0.0.3
42 changes: 42 additions & 0 deletions aio.subprocess/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[metadata]
name = aio.subprocess
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.subprocess
description = A collection of subprocess utils for asyncio
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.subprocess
packages = find_namespace:

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

[options.package_data]
* = py.typed
51 changes: 2 additions & 49 deletions aio.subprocess/setup.py
Original file line number Diff line number Diff line change
@@ -1,52 +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.subprocess',
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.subprocess',
description='A collection of subprocess utils for asyncio',
long_description=read('README.rst'),
py_modules=['aio.subprocess'],
packages=find_namespace_packages(),
package_data={'aio.subprocess': ['py.typed']},
python_requires='>=3.5',
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"pytest-coverage",
"pytest-patches"],
"lint": ['flake8'],
"types": ['mypy'],
"publish": ['wheel'],
},
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()

0 comments on commit 284995a

Please sign in to comment.