forked from CoinFabrik/stacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.44 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
if __name__=="__main__":
setuptools.setup(
name='stacy-analyzer',
author='CoinFabrik',
author_email='',
description='Clarity Static Analyzer',
keywords='stacks, auditor, security, clarity, smart-contracts',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/coinfabrik/stacy',
project_urls={
'Documentation': 'https://github.com/coinfabrik/stacy',
'Bug Reports':
'https://github.com/coinfabrik/stacy/issues',
'Source Code': 'https://github.com/coinfabrik/stacy',
},
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Utilities"
],
python_requires='>=3.6',
install_requires=['tree-sitter', 'ts-clarity==0.0.4'],
entry_points={
'console_scripts': [ # This can provide executable scripts
'stacy-analyzer=stacy_analyzer:main',
],
},
)