-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.11 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.11 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
# Copyright (C) 2018 Logan Campos - @binaryflesh
from setuptools import setup
from pathlib import Path
runPath = Path(__file__).parent
def get_long_description() -> str:
readme_md = runPath / "README.md"
with open(readme_md, encoding="utf-8") as ld:
return ld.read()
setup(
name="quicksilver",
version="v0.0.1a",
description="Agnostic project analyzer that generates resourceful diagrams. WIP",
long_description=get_long_description(),
long_description_content_type="text/markdown",
keywords="productivity, software-analysis, analysis-of-information-systems, root-cause-analysis, software-analysis-and-modeling structural-analysis, wip, wip-do-not-use, software-composition-analysis"
author="Logan Campos",
author_email="logan.campos123@gmail.com",
url="https://github.com/binaryflesh/quicksilver",
license="MIT",
python_requires=">=3.6",
install_requires=[],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
]
)