-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (34 loc) · 953 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
import os
import setuptools
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.md')) as readme:
long_description = readme.read()
setuptools.setup(
name='confluin',
version='0.1.0',
url='https://github.com/katrielalex/confluin',
author='Katriel Cohn-Gordon',
author_email='me@katriel.co.uk',
description='A confluence checker for Tamarin equational theories',
long_description=long_description,
packages=setuptools.find_packages(),
python_requires='>3',
install_requires=[
'attrs',
'antlr4-python3-runtime',
'click',
'coloredlogs',
'jinja2',
'pexpect',
'pylocated',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'confluin=confluin:main',
],
},
)