-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
45 lines (39 loc) · 1.03 KB
/
pyproject.toml
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
[project]
name = 'ropemode'
description = 'a helper for using rope refactoring library in IDEs'
readme = 'README.rst'
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: X11 Applications',
'Environment :: Win32 (MS Windows)',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development',
]
version = '0.6.1'
dependencies = ['rope >= 0.9.4']
[[project.authors]]
name = 'Ali Gholami Rudi'
email = 'aligrudi@users.sourceforge.net'
[[project.maintainers]]
name = 'Lie Ryan'
email = 'lieryan.24@proton.me'
[project.license]
text = 'GNU GPL'
[project.urls]
Source = 'https://github.com/python-rope/ropemode'
[project.optional-dependencies]
dev = [
'build>=0.7.0',
'twine>=4.0.0',
]
[build-system]
requires = [
'setuptools',
'setuptools-scm',
]
build-backend = 'setuptools.build_meta'