Commit 44b6663e by iWan Mustaqim

Update pyproject.toml

1 parent ce26f872
[build-system] [build-system]
requires = ['setuptools >= 64', 'wheel'] requires = ['setuptools >= 64', 'wheel']
build-backend = 'setuptools.build_meta' build-backend = 'setuptools.build_meta'
[tool.setuptools] [tool.setuptools]
packages = ["opensipkd", "opensipkd.detable", "opensipkd.base"] packages = ["opensipkd", "opensipkd.detable", "opensipkd.base"]
[tool.mypy] [tool.mypy]
exclude = [ exclude = [
'bak', 'bak',
] ]
show_error_codes = true show_error_codes = true
[project] [project]
name = 'opensipkd_base' name = 'opensipkd_base'
version = '5.0' version = '5.0'
dependencies = [ dependencies = [
'deform', 'deform',
'colander', 'colander',
'google', 'google',
'google-api-python-client', 'google-api-python-client',
'pyramid', 'pyramid',
'pyramid_tm', 'pyramid_tm',
"pyramid_beaker", "pyramid_beaker",
"pyramid_mailer", "pyramid_mailer",
'pyramid_chameleon', 'pyramid_chameleon',
'pyramid_rpc', 'pyramid_rpc',
"pyramid-restful-framework" "pyramid-restful-framework",
'pytz', 'pytz',
'psycopg2-binary', 'psycopg2-binary',
'requests', 'requests',
'sqlalchemy', 'sqlalchemy',
'sqlalchemy-datatables', 'sqlalchemy-datatables',
'transaction', 'transaction',
'waitress', 'waitress',
'wheezy.captcha', 'wheezy.captcha',
'ziggurat-foundations', 'ziggurat-foundations',
'zope.sqlalchemy', 'zope.sqlalchemy',
] ]
requires-python = '>= 3.8' requires-python = '>= 3.8'
authors = [ authors = [
{name='Agus Gustiana', email='aa.gustiana@gmail.com'}, {name='Agus Gustiana', email='aa.gustiana@gmail.com'},
{email="opensipkd@gmail.com" },] {email="opensipkd@gmail.com" },]
maintainers = [ maintainers = [
{ name = "Ari", email = "ariagungprasetiyo@gmail.com" }, { name = "Ari", email = "ariagungprasetiyo@gmail.com" },
{ name = "Owo Sugiana", email = "sugiana@gmail.com" }] { name = "Owo Sugiana", email = "sugiana@gmail.com" }]
description = 'Framwork Aplikasi openSIPKD' description = 'Framwork Aplikasi openSIPKD'
readme = 'README.rst' readme = 'README.rst'
# license = {text = 'Apache Software License'} # license = {text = 'Apache Software License'}
keywords = ["openSIPKD"] keywords = ["openSIPKD"]
classifiers = [ classifiers = [
'Development Status :: 5 - Beta', 'Development Status :: 5 - Beta',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Framework :: Pylons', 'Framework :: Pylons',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
] ]
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
'pyramid_debugtoolbar', 'pyramid_debugtoolbar',
'pytest', 'webtest'] 'pytest', 'webtest']
[project.entry-points."paste.app_factory"] [project.entry-points."paste.app_factory"]
main = 'opensipkd.base:main' main = 'opensipkd.base:main'
[project.scripts] [project.scripts]
osipkd-db-init = 'opensipkd.base.scripts.initializedb:main' osipkd-db-init = 'opensipkd.base.scripts.initializedb:main'
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!