-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.92 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (45 loc) · 1.92 KB
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
import json
from setuptools import setup
with open('package.json') as f:
package = json.load(f)
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
package_name = package['name'].replace(' ', '_').replace('-', '_')
setup(
name=package_name,
version=package['version'],
author=package['author'],
packages=[package_name],
include_package_data=True,
license=package['license'],
description=package.get('description', package_name),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pip-install-python/dash-mui-scheduler',
project_urls={
'Bug Reports': 'https://github.com/pip-install-python/dash-mui-scheduler/issues',
'Source': 'https://github.com/pip-install-python/dash-mui-scheduler',
'Documentation': 'https://muischeduler.2plot.dev',
},
# typing_extensions is imported directly by every generated wrapper
# (TypedDict/NotRequired/Literal). Recent dash pulls it in unconditionally,
# but the floor here is dash 2.11 — which gated it behind a python_version
# marker — so declare it rather than inherit it.
install_requires=['dash>=2.11.0', 'typing_extensions>=4.1.1'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Dash',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: User Interfaces',
],
keywords='dash plotly scheduler calendar timeline mui material-ui events',
python_requires='>=3.8',
)