-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
44 lines (37 loc) · 1.19 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
42
43
44
#!/usr/bin/env python
"""
setup routine
"""
from setuptools import setup, find_packages
import os
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as open_file:
return open_file.read()
setup(
# Metadata
name='forseti',
version='0.8.1',
description='Formal Logic Framework',
long_description=read('README.rst'),
url='https://github.com/MasterOdin/forseti',
download_url='https://pypi.python.org/pypi/forseti',
license='MIT',
author='Matthew Peveler',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Mathematics',
],
# Contents
packages=find_packages(exclude=['tests*']),
)