-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (50 loc) · 1.48 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
import os
import sys
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file.
with open(os.path.join(here, "README.md"), encoding="utf-8") as md:
long_description = md.read()
version_path = os.path.join(os.path.dirname(__file__), "deeplookup")
sys.path.append(version_path)
from version import __version__ # noqa
setuptools.setup(
name="deeplookup",
version=__version__,
long_description=long_description,
long_description_content_type="text/markdown",
description="Deep Lookup - Deep Learning for Domain Name System",
url="https://github.com/ybubnov/deep-lookup",
author="Yasha Bubnov",
author_email="girokompass@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
],
packages=setuptools.find_packages(exclude=["tests"]),
package_data={"deeplookup": ["weights/*.h5"]},
tests_require=[
"pytest>=6.0.0",
"pytest-benchmark>=3.4.0",
],
install_requires=[
"nltk",
"scipy",
"sklearn",
"gym",
"pandas",
"matplotlib",
"numpy",
"keract",
"h5py",
"tensorflow>=2.0.0",
"tensorflow-datasets>=4.0.0",
"tensorflow-text>=2.0.0",
"tensorflow-transform>=1.0.0",
"tfx>=1.0.0",
"pyts>=0.11.0",
"keras-rl2>=1.0.4",
"wandb>=0.12.0",
"dnspython>=2.1.0",
],
)