-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 808 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 808 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
28
29
30
from distutils.core import setup
def readme():
"""Import the README.md Markdown file and try to convert it to RST format."""
try:
import pypandoc
return pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
with open('README.md') as readme_file:
return readme_file.read()
setup(
name='modeling_framework',
version='0.1',
description='General purpose predictive modeling framework',
long_description=readme(),
classifiers=[
'Programming Language :: Python :: 3',
],
url='https://github.com/ncentola/modeling_framework',
author='Nick Centola',
author_email='centola.nick@gmail.com',
packages=['modeling_framework'],
install_requires=[
'pypandoc>=1.4',
'numpy>=1.14.0'
],
)