-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 932 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 932 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='sentential',
version='0.1.1',
description="A sentential logic interpreter/evaluator.",
author_email='joseph.dougherty@gmail.com',
packages=['sentential'],
install_requires=['prettytable', 'pytest', 'coverage', 'graphviz'],
package_data={
'': ['LICENSE', 'NOTICE', '*.rst'],
},
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
),
)