forked from cpcloud/ipython-autotime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (29 loc) · 1 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
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
import versioneer
with open('README.md') as f:
long_description = f.read()
setup(
name='axil-autotime',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Lev Maximov',
description='An improved version of Time everything in IPython by Phillip Cloud',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache',
install_requires=['ipython'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
],
packages=['autotime'],
zip_safe=False,
)