-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (42 loc) · 1014 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
43
44
45
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
import os
reqs = [
'mock',
'coveralls',
'sphinx',
'mako',
'pyramid',
'pyramid_mako',
'waitress',
'pandas',
]
try:
import pypandoc
README = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
README = ''
setup(name='cogfusion',
version='0.0',
author='Daniel Kessler, Cogfusion Authors',
author_email='[email protected]',
description='...',
packages=find_packages(),
url = 'https://github.com/dankessler/cogfusion',
test_suite="tests",
zip_safe=False,
license='MIT',
long_description=README,
entry_points="""\
[paste.app_factory]
main = cogfusion:main
""",
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
install_requires=reqs,
include_package_data=True,
scripts=['exe/cogfusion'],
)