forked from materialsvirtuallab/flamyngo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (47 loc) · 1.7 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf-8
# Copyright (c) Materials Virtual Lab
# Distributed under the terms of the BSD License.
import glob
import os
from io import open
from setuptools import setup, find_packages
SETUP_PTH = os.path.dirname(os.path.abspath(__file__))
long_desc = """
Flamyngo is a customizable Flask frontend for MongoDB.
At the most basic level, the aim is to delegate most settings to a YAML
configuration file, which then allows the underlying code to be reused for
any conceivable collection.
Detailed usage instructions are available at the project's `Github page
<https://github.com/materialsvirtuallab/flamyngo>`_.
"""
setup(
name="flamyngo",
packages=find_packages(),
version="1.1.1",
install_requires=["flask", "pyyaml", "monty>=0.7.0", "pymongo"],
package_data={"flamyngo": ["static/*.*", "static/js/*.*",
"templates/*"]},
author="Shyue Ping Ong",
author_email="[email protected]",
maintainer="Shyue Ping Ong",
maintainer_email="[email protected]",
url="https://github.com/materialsvirtuallab/flamyngo",
license="BSD",
description="Flamyngo is a customizable Flask frontend for MongoDB.",
long_description=long_desc,
keywords=["flask", "web", "frontend", "gui", "MongoDB"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
entry_points={
'console_scripts': [
'flm = flamyngo.flm:main'
]
}
)