-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
22 lines (19 loc) · 865 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
# "datastore@git+https://github.com/OpenSlides/openslides-datastore-service",
with open("requirements/requirements-general.txt") as requirements_production:
install_requires = [x.strip() for x in requirements_production.readlines()]
setuptools.setup(
name="datastore",
version="1.0.0",
author="jsangmeister, FinnStutzenstein",
author_email="joshua.sangmeister@openslides.com, finn.stutzenstein@openslides.com",
description="Package for OS4 to provide direct access to the datastore",
packages=setuptools.find_packages(),
install_requires=install_requires,
package_data={"datastore": ["py.typed", "shared/postgresql_backend/schema.sql"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)