Skip to content

Commit 2a6f3cb

Browse files
committed
Cleanup classifiers and add python_requires to setup.py
1 parent 1f60fd8 commit 2a6f3cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
keywords='ethereum blockchain evm',
121121
packages=find_packages(exclude=["tests", "tests.*"]),
122122
classifiers=[
123-
'Development Status :: 2 - Pre-Alpha',
123+
'Development Status :: 3 - Alpha',
124124
'Intended Audience :: Developers',
125125
'License :: OSI Approved :: MIT License',
126126
'Natural Language :: English',

setup_trinity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@
2323
keywords='ethereum blockchain evm trinity',
2424
packages=[],
2525
classifiers=[
26-
'Development Status :: 2 - Pre-Alpha',
26+
'Development Status :: 3 - Alpha',
2727
'Intended Audience :: Developers',
2828
'License :: OSI Approved :: MIT License',
2929
'Natural Language :: English',
3030
'Programming Language :: Python :: 3.6',
3131
],
32+
python_requires=">=3.6,<4"
3233
# trinity
3334
entry_points={
3435
'console_scripts': ['trinity=trinity:main'],

0 commit comments

Comments
 (0)