kopia lustrzana https://github.com/bugout-dev/moonstream
Renamed db to moonstream-db
rodzic
826af41dcc
commit
e328990125
|
@ -0,0 +1 @@
|
||||||
|
# moonstream db
|
|
@ -0,0 +1,35 @@
|
||||||
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
long_description = ""
|
||||||
|
with open("README.md") as ifp:
|
||||||
|
long_description = ifp.read()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="moonstream-db",
|
||||||
|
version="0.0.1",
|
||||||
|
author="Bugout.dev",
|
||||||
|
author_email="engineers@bugout.dev",
|
||||||
|
license="Apache License 2.0",
|
||||||
|
description="Moonstream database",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
|
url="https://github.com/bugout-dev/moonstream",
|
||||||
|
platforms="all",
|
||||||
|
classifiers=[
|
||||||
|
"Development Status :: 2 - Pre-Alpha",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"Natural Language :: English",
|
||||||
|
"Programming Language :: Python",
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
|
"Topic :: Software Development :: Libraries",
|
||||||
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
|
],
|
||||||
|
python_requires=">=3.6",
|
||||||
|
packages=find_packages(),
|
||||||
|
package_data={"bugout": ["py.typed"]},
|
||||||
|
zip_safe=False,
|
||||||
|
install_requires=["alembic", "psycopg2-binary", "sqlalchemy"],
|
||||||
|
extras_require={"dev": ["black", "mypy"]},
|
||||||
|
)
|
Ładowanie…
Reference in New Issue