-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
51 lines (47 loc) · 1.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
# Name of the module
name='blackcellmagic',
# Details
version='0.0.3',
description='IPython wrapper to format cell using black.',
long_description=long_description,
# The project's main homepage.
url='https://github.com/csurfer/blackcellmagic',
# Author details
author='Vishwas B Sharma',
author_email='[email protected]',
# License
license='MIT',
py_modules=['blackcellmagic'],
keywords='automation formatter yapf autopep8 pyfmt gofmt rustfmt IPython black jupyter',
classifiers=[
# Intended Audience.
'Intended Audience :: Developers',
# Environment.
'Environment :: Console',
# License.
'License :: OSI Approved :: MIT License',
# Project maturity.
'Development Status :: 3 - Alpha',
# Operating Systems.
'Operating System :: OS Independent',
# Supported Languages.
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
# Topic tags.
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
],
install_requires=['black', 'jupyter'],
)