project management

1 parent 1f59f117
Basis Aplikasi OpenSIPKD Basis Aplikasi OpenSIPKD
======================== ========================
Ini adalah basis dari seluruh aplikasi openSIPKD. Ini adalah basis dari seluruh aplikasi.
Pemasangan Pemasangan
...@@ -18,7 +18,7 @@ Buat Python Virtual Environment:: ...@@ -18,7 +18,7 @@ Buat Python Virtual Environment::
Unduh source-nya:: 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:: Pasang::
...@@ -26,7 +26,7 @@ Pasang:: ...@@ -26,7 +26,7 @@ Pasang::
Buat databasenya. Lalu salin file konfigurasi:: 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:: Sesuaikan database profile dan log file. Lalu buat tabelnya::
......
...@@ -69,7 +69,7 @@ lib_dir = C:\Users\aagus\Project\pbb\instantclient_11_2 ...@@ -69,7 +69,7 @@ lib_dir = C:\Users\aagus\Project\pbb\instantclient_11_2
pbb_esppt_files = C:\tmp\pbb_esppt_files pbb_esppt_files = C:\tmp\pbb_esppt_files
pbb_esppt_mirror.url = pbb_esppt_mirror.url =
pbb_esppt_bsre.url = bapenda:!&hfZZR6g@https://esign-service.cirebonkab.go.id/api/sign/pdf@3175101408750004:A4gusti08**&%% 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 = sig_url =
map_center = map_center =
;static_files = %(here)s/../files ;static_files = %(here)s/../files
......
from datetime import datetime
from sqlalchemy import ( from sqlalchemy import (
Column, Column,
Integer, Integer,
BigInteger, BigInteger,
UniqueConstraint,
String,
func, 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 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 \ No newline at end of file
...@@ -5,11 +5,6 @@ build-backend = 'setuptools.build_meta' ...@@ -5,11 +5,6 @@ build-backend = 'setuptools.build_meta'
[tool.setuptools] [tool.setuptools]
packages = ["opensipkd", "opensipkd.detable", "opensipkd.base"] packages = ["opensipkd", "opensipkd.detable", "opensipkd.base"]
#[tool.setuptools.package-dir]
# mypkg = "lib"
#"opensipkd.models" = "models"
#"opensipkd.base" = "base"
[tool.mypy] [tool.mypy]
exclude = [ exclude = [
'bak', 'bak',
...@@ -20,36 +15,31 @@ show_error_codes = true ...@@ -20,36 +15,31 @@ show_error_codes = true
name = 'opensipkd_base' name = 'opensipkd_base'
version = '5.0' version = '5.0'
dependencies = [ dependencies = [
'sqlalchemy', 'deform',
'colander', 'colander',
'google',
'google-api-python-client',
'pyramid', 'pyramid',
'pyramid_tm', 'pyramid_tm',
"pyramid_beaker", "pyramid_beaker",
"pyramid_mailer", "pyramid_mailer",
'SQLAlchemy',
'transaction',
'waitress',
'ziggurat-foundations',
'zope.sqlalchemy',
'pytz',
'deform',
'psycopg2-binary',
'pyramid_chameleon', 'pyramid_chameleon',
'pyramid_rpc', 'pyramid_rpc',
'pytz',
'psycopg2-binary',
'requests', 'requests',
'sqlalchemy',
'sqlalchemy-datatables', 'sqlalchemy-datatables',
#'py3o.template', 'transaction',
'waitress',
'wheezy.captcha', 'wheezy.captcha',
#'icecream', 'ziggurat-foundations',
'google-api-python-client', 'zope.sqlalchemy',
'google',
#'pyjwt',
] ]
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" },
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!