forked from FilippoBovo/production-data-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 892 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
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='titanic',
version='0.1',
description='Analysis of the Titanic dataset',
long_description=readme(),
classifiers=[
'Programming Language :: Python :: 3',
],
# Substitute <github_account> with the name of your GitHub account
url='https://github.com/<github_account>/titanic_datascience',
author='Filippo Bovo', # Substitute your name
author_email='[email protected]', # Substitute your email
license='MIT',
packages=['titanic'],
install_requires=[
'pypandoc>=1.4'
],
)