diff options
| author | Michele Simionato <michele.simionato@gmail.com> | 2018-08-04 07:11:33 +0200 |
|---|---|---|
| committer | Michele Simionato <michele.simionato@gmail.com> | 2018-08-04 07:11:33 +0200 |
| commit | a40a84f46938fc7ff3dc4a449d862690efb690d2 (patch) | |
| tree | 5a02d6cb7dddd6361d611fb348c7e97d56ea1b46 /setup.py | |
| parent | eb890d98739196b83f1ecb5cb7bcfe9739a9502c (diff) | |
| download | python-decorator-git-a40a84f46938fc7ff3dc4a449d862690efb690d2.tar.gz | |
Support for Python 3.7
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ from setuptools import setup dic = dict(__file__=None) -exec(open('src/decorator.py').read(), dic) +exec(open('src/decorator.py').read(), dic) # extract the __version__ VERSION = dic['__version__'] @@ -33,6 +33,7 @@ if __name__ == '__main__': 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities'], |
