-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (52 loc) · 2.08 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
"""Sets up PyStalk to be installed"""
import os
from setuptools import setup, find_packages
from MetaStalk import __version__, __author__
def read(fname) -> str:
"""Reads the fname file.
Used to read the README.MD file
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open("requirements.txt", "r") as infile:
requirements = [x.strip() for x in infile.readlines()]
with open("requirements-dev.txt", "r") as infile:
requirements_dev = [x.strip() for x in infile.readlines()][1:]
setup(
name="MetaStalk",
version=__version__,
author=__author__,
author_email="[email protected]",
install_requires=requirements,
tests_require=requirements_dev,
description="Metadata analyzer and visualizer",
license="MPL 2.0",
python_requires=">=3.6",
platforms="any",
packages=find_packages(exclude=["tests"]),
package_data={"MetaStalk": ["utils/assets/*"]},
include_package_data=True,
long_description=read("README.md"),
long_description_content_type="text/markdown",
entry_points={"console_scripts": ["metastalk=MetaStalk.main:start"]},
keywords="exif image metadata photo plotly dash heic",
url="https://gitlab.com/Cyb3r-Jak3/MetaStalk",
project_urls={
"Issues": "https://gitlab.com/Cyb3r-Jak3/MetaStalk/issues",
"Source": "https://gitlab.com/Cyb3r-Jak3/MetaStalk/-/tree/master",
"CI": "https://gitlab.com/Cyb3r-Jak3/MetaStalk/pipelines",
"Releases": "https://github.com/Cyb3r-Jak3/MetaStalk/releases",
},
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
],
)