-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 2.09 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 2.09 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
50
51
52
53
54
55
56
"""A setuptools based setup module."""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="datahawk", # Required
version="0.0.4", # Required
description="Text data browser for visualization and analysis", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional
url="https://github.com/nihaljn/datahawk", # Optional
author="Nihal Jain", # Optional
author_email="nihal.b.jain@gmail.com", # Optional
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="data visualization, research, natural language processing", # Optional
package_dir={"": "src"}, # Optional
packages=find_packages(where="src"), # Required
package_data={
"datahawk": ["templates/*", "static/*"],
},
python_requires=">=3.8",
install_requires=[
"flask>=2.0",
"datasets>=3.0",
"ijson>=3.3.0"
], # Optional
# Entry points. The following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
entry_points={ # Optional
"console_scripts": [
"datahawk=datahawk.app:main",
],
},
project_urls={ # Optional
"Bug Reports": "https://github.com/nihaljn/datahawk/issues",
"Funding": "https://buymeacoffee.com/nihaljn",
"Say Thanks!": "https://saythanks.io/to/nihal.b.jain",
"Source": "https://github.com/nihaljn/datahawk",
},
)