-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
33 lines (29 loc) · 1.16 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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
with open('requirements.txt', 'r') as f:
setup_requires = f.readlines()
setup(name='ctp',
version='0.9',
description='Conditional Theorem Provers',
author='Pasquale Minervini',
author_email='[email protected]',
url='https://github.com/uclnlp/ctp',
test_suite='tests',
license='MIT',
install_requires=setup_requires,
setup_requires=setup_requires,
tests_require=setup_requires,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
packages=find_packages(),
keywords='neuro-symbolic reasoning machine learning knowledge graph')