Skip to content

Commit b545d02

Browse files
committed
fixed setup
1 parent a7745e7 commit b545d02

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

setup.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,39 @@
66
PyScaffold helps you to put up the scaffold of your new Python project.
77
Learn more under: https://pyscaffold.org/
88
"""
9+
import pathlib
910
from setuptools import setup
1011

12+
HERE = pathlib.Path(__file__).parent
13+
14+
README = (HERE / "README.md").read_text()
15+
1116
if __name__ == "__main__":
1217
try:
13-
setup(use_scm_version={"version_scheme": "no-guess-dev"})
18+
setup(
19+
use_scm_version={"version_scheme": "no-guess-dev"},
20+
name="strawberry-sqlalchemy-mapper",
21+
version="0.1.0",
22+
description="The simplest way to implement autogenerated strawberry types for columns and relationships in SQLAlchemy models",
23+
long_description=README,
24+
long_description_content_type="text/markdown",
25+
url="https://github.com/expedock/strawberry-sqlalchemy-mapper",
26+
author="Expedock",
27+
author_email="[email protected]",
28+
license="MIT",
29+
classifiers=[
30+
"License :: OSI Approved :: MIT License",
31+
"Programming Language :: Python :: 3",
32+
],
33+
packages=["strawberry_sqlalchemy_mapper"],
34+
include_package_data=True,
35+
install_requires=[
36+
"sentinel==0.3.0",
37+
"sqlalchemy>=1.4",
38+
"strawberry-graphql>=0.95",
39+
"importlib-metadata==4.11.1",
40+
],
41+
)
1442
except: # noqa
1543
print(
1644
"\n\nAn error occurred while building the project, "

0 commit comments

Comments
 (0)