-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.45 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="oem2orm",
version="0.4.1",
author="henhuy, jh-RLI",
author_email="[email protected]",
description="SQLAlchemy module to generate ORM, read from data model (oedatamodel) in open-energy-metadata JSON format",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OpenEnergyPlatform/oem2orm",
packages=setuptools.find_packages(),
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=['sqlalchemy==1.3.16', 'oedialect==0.1.1', 'requests', 'jmespath', 'omi', 'click'], # Optional
project_urls={ # Optional
'Bug Reports': 'https://github.com/OpenEnergyPlatform/oem2orm/issues',
'Source': 'https://github.com/OpenEnergyPlatform/oem2orm/tree/develop/oem2orm',
},
entry_points={
'console_scripts': ['oem2orm=oem2orm.main:cli'],
}
)