-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (29 loc) · 994 Bytes
/
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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
meta = {}
with open('./src/dashtools/version.py') as f:
exec(f.read(), meta)
with open('requirements.txt') as f:
requirements = f.readlines()
setuptools.setup(
name="dash-tools",
version=meta['__version__'],
author="Andrew Hossack",
author_email="[email protected]",
description="Plotly Dash Templating and Deployment Tools",
entry_points={
'console_scripts': ['dashtools = dashtools.cli.cli:main']},
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/andrew-hossack/dash-tools",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
include_package_data=True,
install_requires=requirements,
)