This repository was archived by the owner on May 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
59 lines (43 loc) · 1.44 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
56
57
58
59
# -*- coding: utf-8 -*-
from __future__ import print_function
from pathlib import Path
from setuptools import setup
from setuptools import find_packages
HERE = Path(__file__).parent
NAME = 'jupyter_datatables'
ABOUT = dict()
exec(Path(HERE, NAME, '__about__.py').read_text(), ABOUT)
README: str = Path(HERE, "README.md").read_text(encoding='utf-8')
REQUIREMENTS: list = Path(HERE, 'requirements.txt').read_text().splitlines()
setup(
name=ABOUT['__title__'],
version=ABOUT['__version__'],
author=ABOUT['__author__'],
author_email=ABOUT['__email__'],
url=ABOUT['__uri__'],
license=ABOUT['__license__'],
description=ABOUT['__summary__'],
long_description=README,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: IPython",
"Framework :: Jupyter",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities"
],
install_requires=REQUIREMENTS,
packages=find_packages(),
include_package_data=True,
package_data={
NAME: ["css/*.css", "js/*.js"]
},
python_requires=">=3.6",
zip_safe=False
)