project management

1 parent 1f59f117
Basis Aplikasi OpenSIPKD
========================
Ini adalah basis dari seluruh aplikasi openSIPKD.
Ini adalah basis dari seluruh aplikasi.
Pemasangan
......@@ -18,7 +18,7 @@ Buat Python Virtual Environment::
Unduh source-nya::
$ git clone https://git.opensipkd.com/aa.gusti/opensipkd-base -b beta-4.2
$ git clone https://git.opensipkd.com/aa.gusti/opensipkd-base -b v5.0
Pasang::
......@@ -26,7 +26,7 @@ Pasang::
Buat databasenya. Lalu salin file konfigurasi::
$ cp bphtb/development.ini live.ini
$ cp development.ini.tpl live.ini
Sesuaikan database profile dan log file. Lalu buat tabelnya::
......
......@@ -69,7 +69,7 @@ lib_dir = C:\Users\aagus\Project\pbb\instantclient_11_2
pbb_esppt_files = C:\tmp\pbb_esppt_files
pbb_esppt_mirror.url =
pbb_esppt_bsre.url = bapenda:!&hfZZR6g@https://esign-service.cirebonkab.go.id/api/sign/pdf@3175101408750004:A4gusti08**&%%
pbb_pemda =
pbb_pemda = 32.79
sig_url =
map_center =
;static_files = %(here)s/../files
......
from datetime import datetime
from sqlalchemy import (
Column,
Integer,
BigInteger,
UniqueConstraint,
String,
func,
)
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm.exc import NoResultFound
from sqlalchemy.orm import (
scoped_session,
sessionmaker,
relationship,
backref
)
from . import NamaModel, Base, DBSession
......
#[project.scripts]
#import_log = 'opensipkd.base.scripts.import_log:main'
#[tool.setuptools]
#packages = ["opensipkd", "opensipkd.models", "opensipkd.detables", "opensipkd.base"]
#[tool.mypy]
#exclude = [
# 'base',
# 'report',
# 'external',
# 'developers',
#]
#show_error_codes = true
#
#[[tool.mypy.overrides]]
#module = [
# "opensipkd.base.*",
# "opensipkd.models.*",
# "opensipkd.detable.*",
# "opensipkd.jsonrpc_auth.*",
#]
#warn_unused_ignores = true
#strict = true
\ No newline at end of file
......@@ -5,11 +5,6 @@ build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ["opensipkd", "opensipkd.detable", "opensipkd.base"]
#[tool.setuptools.package-dir]
# mypkg = "lib"
#"opensipkd.models" = "models"
#"opensipkd.base" = "base"
[tool.mypy]
exclude = [
'bak',
......@@ -20,36 +15,31 @@ show_error_codes = true
name = 'opensipkd_base'
version = '5.0'
dependencies = [
'sqlalchemy',
'deform',
'colander',
'google',
'google-api-python-client',
'pyramid',
'pyramid_tm',
"pyramid_beaker",
"pyramid_mailer",
'SQLAlchemy',
'transaction',
'waitress',
'ziggurat-foundations',
'zope.sqlalchemy',
'pytz',
'deform',
'psycopg2-binary',
'pyramid_chameleon',
'pyramid_rpc',
'pytz',
'psycopg2-binary',
'requests',
'sqlalchemy',
'sqlalchemy-datatables',
#'py3o.template',
'transaction',
'waitress',
'wheezy.captcha',
#'icecream',
'google-api-python-client',
'google',
#'pyjwt',
'ziggurat-foundations',
'zope.sqlalchemy',
]
requires-python = '>= 3.8'
authors = [
{name='Agus Gustiana', email='aa.gustiana@gmail.com'},
{ email = "opensipkd@gmail.com" },]
{email="opensipkd@gmail.com" },]
maintainers = [
{ name = "Ari", email = "ariagungprasetiyo@gmail.com" },
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!