forked from grd/FreePDM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_server.py
More file actions
24 lines (21 loc) · 742 Bytes
/
setup_server.py
File metadata and controls
24 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin python3
# -*- coding: utf-8 -*-
"""
:copyright: Copyright 2022 by the FreePDM team
:license: MIT License.
"""
from setuptools import setup
import os
version_path = os.path.join(os.path.abspath(os.path.dirname(__file__)),
"src", "version.py")
with open(version_path) as fp:
exec(fp.read())
setup(name='freePDM-Server',
version=str(__version__),
packages=['src', ],
maintainer=["grd", "Jee-Bee"],
maintainer_email="",
url="https://github.com/grd/FreePDM",
description="Backend for FreePDM",
install_requires=['SQLAlchemy', 'sqlalchemy-utils', 'psycopg2', 'typing'], # Front end software currently ignored here.
include_package_data=True)