-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 989 Bytes
/
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
import setuptools
from pathlib import Path
project_dir = Path(__file__).resolve().parent
long_description = (project_dir / "README.md").read_text()
install_requires = (project_dir / "requirements.txt").read_text().split("\n")
setuptools.setup(
name="reven2-file-activity",
version="0.0.1",
author="Tetrane",
author_email="[email protected]",
description="file activity script for REVEN",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.tetrane.com",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux ",
],
include_package_data=True,
python_requires=">=3.5.3",
install_requires=install_requires,
entry_points={
"console_scripts": ["reven2-file-activity=reven2_file_activity.file_activity:main"]
},
)