-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 861 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (26 loc) · 861 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
version = '0.0.2'
entry_points = {
'console_scripts': ['ipython-journal=ipythonjournal.journal:main']
}
setup(name='ipython-journal',
version=version,
description="IPython Journal",
long_description=""" """,
install_requires=["matplotlib",
],
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Matthias Kümmerer',
author_email='matthias@matthias-k.org',
url='',
packages = ['ipythonjournal'],
#packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
# package_data={'':'LICENSE'},
include_package_data=True,
zip_safe=True,
entry_points=entry_points,
use_2to3 = True,
)