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:
20
setup.py
20
setup.py
@ -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',
|
||||
|
||||
Reference in New Issue
Block a user