-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
37 lines (32 loc) · 896 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[metadata]
name = cjdb
version = 0.1.0
description = CJDB is a set of tools enabling CityJSON integration with a PostgreSQL database
long_description_content_type = text/markdown
long_description = file: README.md
keywords = CityJSON, PostgreSQL
license_files = LICENSE
python_requires = >=3.7
license = MIT
url = https://github.com/leoleonsio/cjdb
author = Cynthia Cai, Lan Yan, Yitong Xia, Chris Poon, Siebren Meines, Leon Powalka
[options]
packages =
cj2pgsql
cj2pgsql.modules
cj2pgsql.resources
model.sqlalchemy_models
cjdb_api
cjdb_api.app
cjdb_api.app.routes
cjdb_api.app.schemas
cjdb_api.app.resources
cjdb_api.app.templates
include_package_data = True
[options.package_data]
cj2pgsql.resources = *.sql
cjdb_api.app.templates = *.html
[options.entry_points]
console_scripts =
cj2pgsql = cj2pgsql.main:main
cjdb_api = cjdb_api.run:main