|
6 | 6 | PyScaffold helps you to put up the scaffold of your new Python project.
|
7 | 7 | Learn more under: https://pyscaffold.org/
|
8 | 8 | """
|
| 9 | +import pathlib |
9 | 10 | from setuptools import setup
|
10 | 11 |
|
| 12 | +HERE = pathlib.Path(__file__).parent |
| 13 | + |
| 14 | +README = (HERE / "README.md").read_text() |
| 15 | + |
11 | 16 | if __name__ == "__main__":
|
12 | 17 | 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 | + |
| 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 | + ) |
14 | 42 | except: # noqa
|
15 | 43 | print(
|
16 | 44 | "\n\nAn error occurred while building the project, "
|
|
0 commit comments