Skip to content

Commit

Permalink
Add repo metadata for PyPi (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
coolhill authored Jul 15, 2022
1 parent 4615c94 commit d9623aa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setup(
name="amarna",
version="0.1",
version="0.1.2",
description="Amarna is a static-analyzer for the Cairo programming language.",
url="https://github.com/crytic/amarna",
author="Trail of Bits",
license="AGPL-3.0",
packages=find_packages(),
Expand All @@ -12,6 +16,8 @@
"lark>=1.1.2",
"pydot>=1.4.2",
],
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"amarna=amarna.command_line:main",
Expand Down

0 comments on commit d9623aa

Please sign in to comment.