-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (50 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
# WARNING: This imposes limitations on requirements.txt such that the
# full Pip syntax is not supported. See also
# <http://stackoverflow.com/questions/14399534/>.
install_reqs = []
with open('requirements.txt') as f: # pylint: disable=W1514
install_reqs += f.read().splitlines()
with open('README.rst') as f: # pylint: disable=W1514
README = f.read()
dist = setup(
name='stone',
version='3.5.0',
python_requires='>=3.11',
install_requires=install_reqs,
entry_points={
'console_scripts': ['stone=stone.cli:main'],
},
packages=[
'stone',
'stone.backends',
'stone.backends.python_rsrc',
'stone.frontend',
'stone.ir',
],
package_data={
'stone': ['py.typed'],
},
zip_safe=False,
author_email='kelkabany@dropbox.com',
author='Ken Elkabany',
description='Stone is an interface description language (IDL) for APIs.',
license_expression='MIT',
long_description=README,
long_description_content_type='text/x-rst',
maintainer_email='api-platform@dropbox.com',
maintainer='Dropbox',
url='https://github.com/dropbox/stone',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)