Moving to FastAPI

Config is not properly working with .env file as of now
Cost Centre is mostly working, going to work on Accounts now
This commit is contained in:
tanshu
2020-05-08 10:22:25 +05:30
parent 72044476a8
commit fe74ef44bf
89 changed files with 1516 additions and 2421 deletions

View File

@ -3,20 +3,12 @@ import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.txt')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
requires = [
'pyramid',
'waitress',
'pyramid_tm',
'transaction',
'zope.sqlalchemy',
'SQLAlchemy',
'psycopg2-binary',
]
with open(os.path.join(here, 'README.txt'), "r") as r:
README = r.read()
with open(os.path.join(here, 'CHANGES.txt'), "r") as c:
CHANGES = c.read()
with open(os.path.join(here, 'requirements.txt'), "r") as r:
requires = r.read().splitlines()
setup(name='brewman',
version='6.0',