-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
55 lines (50 loc) · 1.74 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
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""seamm-dashboard
The Web Dashboard for SEAMM (Simulation Environment for Atomistic and Molecular Simulations).
"""
import setuptools
import versioneer
with open("requirements.txt") as fd:
requirements = fd.read()
with open('README.md') as readme_file:
readme = readme_file.read()
if __name__ == "__main__":
with open("requirements.txt") as fd:
requirements = fd.read()
setuptools.setup(
name="seamm-dashboard",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=__doc__.splitlines()[1],
long_description=readme,
long_description_content_type='text/markdown',
author="Jessica Nash",
author_email="[email protected]",
url="https://github.com/molssi-seamm/seamm_dashboard.git",
license="BSD-3C",
packages=setuptools.find_packages(),
# Required packages, pulls from pip if needed; do not use for Conda
# deployment
install_requires=requirements,
include_package_data=True,
extras_require={
"tests": [],
},
tests_require=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
],
zip_safe=False,
entry_points={
"console_scripts": [
"seamm_dashboard=seamm_dashboard.results_dashboard:run",
"seamm-dashboard=seamm_dashboard.results_dashboard:run",
],
},
)