-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
35 lines (33 loc) · 1.04 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="cyber_record",
version="0.1.12",
author="daohu527",
author_email="daohu527@gmail.com",
description="Cyber record offline parse tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/daohu527/cyber_record",
project_urls={
"Bug Tracker": "https://github.com/daohu527/cyber_record/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
install_requires=[
"protobuf<=3.19.4; python_version<'3.7'",
"protobuf<=3.19.4; python_version>='3.7'"
],
entry_points={
'console_scripts': [
'cyber_record = cyber_record.main:main',
],
},
python_requires=">=3.6",
)