-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup_web.py
29 lines (25 loc) · 957 Bytes
/
setup_web.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
"""Automatminer web edition. If you're looking to install
automatminer (the regular package), just use setup.py."""
from setuptools import setup, find_packages
import os
from automatminer_web import __version__
module_dir = os.path.dirname(os.path.abspath(__file__))
reqs_raw = open(os.path.join(module_dir, "requirements_web.txt")).read()
reqs_list = [r.replace("==", ">=") for r in reqs_raw.split("\n")]
if __name__ == "__main__":
setup(
name='automatminer_web',
description='a web app for automatminer',
long_description="",
url='https://github.com/hackingmaterials/automatminer',
author=['Alex Dunn'],
author_email='ardunn@lbl.gov',
license='modified BSD',
packages=find_packages(include="./automatminer_web"),
package_data={},
version=__version__,
zip_safe=False,
install_requires=reqs_list,
extras_require={},
classifiers=[]
)