-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (32 loc) · 989 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = ('flake8==5.0.0', 'black')
setup(
name='pycharm_ext_tools',
version='0.1.0',
description='Flake8 and Black support for pycharm code selection',
long_description='\n\n',
author='Haim Daniel',
author_email='[email protected]',
url='https://github.com/haim0n/pycharm_ext_tools_selection.git',
packages=[
'pycharm_ext_tools',
],
package_dir={'pycharm_ext_tools': 'pycharm_ext_tools'},
include_package_data=True,
install_requires=requirements,
license="ISCL",
zip_safe=False,
keywords='pycharm_ext_tools',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
)