File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 33
33
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
34
34
run : |
35
35
python setup.py sdist bdist_wheel
36
- twine --verbose upload dist/*
36
+ twine upload --verbose dist/*
Original file line number Diff line number Diff line change 2
2
setup.py
3
3
"""
4
4
import os
5
+ import shlex
5
6
from codecs import open
6
- from setuptools import setup , find_packages
7
- from setuptools .command .develop import develop
8
7
from subprocess import check_call
9
- import shlex
10
8
from warnings import warn
11
9
10
+ from setuptools import find_packages , setup
11
+ from setuptools .command .develop import develop
12
+
12
13
13
14
class PostDevelopCommand (develop ):
14
15
"""
@@ -59,8 +60,8 @@ def run(self):
59
60
keywords = "nsrdb" ,
60
61
python_requires = '>=3.9' ,
61
62
classifiers = [
62
- "Development Status :: Beta" ,
63
- "Intended Audience :: Modelers " ,
63
+ "Development Status :: 4 - Beta" ,
64
+ "Intended Audience :: Science/Research " ,
64
65
"License :: OSI Approved :: BSD License" ,
65
66
"Natural Language :: English" ,
66
67
"Programming Language :: Python :: 3.7" ,
You can’t perform that action at this time.
0 commit comments