-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.07 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
# setup.py
from setuptools import find_packages, setup
def get_version():
return "0.1.0" # Hardcoded version without canonicalization
setup(
name="dash_handsontable",
version=get_version(),
packages=find_packages(),
include_package_data=True,
package_data={"dash_handsontable": ["*.js", "*.json"]},
description="Dash component wrapper for Handsontable",
author="Your Name",
author_email="[email protected]",
url="https://github.com/yourusername/dash-handsontable",
install_requires=[
"dash>=2.0.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Dash",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)