-
Notifications
You must be signed in to change notification settings - Fork 3
/
old_setup.py
41 lines (37 loc) · 1.34 KB
/
old_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
36
37
38
39
40
41
import asekuro
from setuptools import setup, find_packages
from os import path
def load_readme():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name='asekuro',
version=asekuro.__version__,
description='CLI util to deal with Jupyter Notebooks',
long_description=load_readme(),
long_description_content_type='text/markdown',
license='MIT License',
author='Vincent D. Warmerdam',
entry_points={
'console_scripts': [
'asekuro = asekuro.cli:main',
],
},
url='https://github.com/godatadriven/asekuro',
packages=find_packages(),
python_requires='>=3.6',
install_requires=['pytest>=4.0.2',
'nbval>=0.9.1',
'nbformat>=4.4.0',
'nbconvert>=5.4.0',
'Click>=7.0'],
classifiers=['Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License']
)