-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
33 lines (29 loc) · 1.01 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
import io
from setuptools import setup
with io.open('README.md') as f:
long_description = f.read()
setup(
name='ipython-autotime',
author='Phillip Cloud',
author_email='cpcloud@gmail.com',
description='Time everything in IPython',
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache',
url='https://github.com/cpcloud/ipython-autotime',
use_scm_version={'write_to': 'autotime/_version.py'},
setup_requires=['setuptools_scm'],
install_requires=['ipython', 'monotonic ; python_version < "3.3"'],
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'],
)