-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
24 lines (21 loc) · 818 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file. Used for the long_description.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "bonsai-code",
version = "0.6.8",
author = "Andre Santos",
author_email = "haros.framework@gmail.com",
description = "Static analysis library.",
long_description= read("README.rst"),
license = "MIT",
keywords = "static-analysis ast parsing",
url = "https://github.com/git-afsantos/bonsai",
packages = find_packages(),
entry_points = {"console_scripts": ["bonsai = bonsai.bonsai:main"]},
package_data = {},
install_requires= [],
zip_safe = True
)