-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathsetup.py
36 lines (31 loc) · 1.08 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
import os
from setuptools import setup, find_packages
base_packages = [
"anywidget>=0.9.2"
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="drawdata",
version="0.3.4",
description="draw a dataset from inside Jupyter",
author="Vincent D. Warmerdam",
packages=find_packages(exclude=["notebooks"]),
package_data={"drawdata": ["static/*.js", "static/*.css"]},
long_description=read("readme.md"),
long_description_content_type="text/markdown",
install_requires=base_packages,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"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",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
],
license_files=["LICENSE"],
)