-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1.01 KB
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1.01 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import elpy
setup(
name="elpy",
version=elpy.__version__,
description="Backend for the elpy Emacs mode",
long_description=elpy.__doc__,
url="https://github.com/jorgenschaefer/elpy",
author="Jorgen Schaefer",
author_email="contact@jorgenschaefer.de",
license="GPL",
python_requires=">=3.11",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
("License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)"),
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
"Natural Language :: English",
"Topic :: Text Editors :: Emacs",
],
packages=find_packages(),
include_package_data=True,
install_requires=["flake8>=2.0", "packaging"],
test_suite="elpy"
)