Skip to content

Commit d5446ab

Browse files
committed
Preparing for first Alpha
1 parent 027c3d0 commit d5446ab

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

platformio/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Copyright (C) Ivan Kravets <[email protected]>
22
# See LICENSE for details.
33

4-
VERSION = (0, 0, 0)
4+
VERSION = (0, 1, "0-dev")
55
__version__ = ".".join([str(s) for s in VERSION])
66

77
__title__ = "platformio"
8-
__description__ = ("An easy way to build code with different development"
9-
"platforms")
8+
__description__ = ("A console tool to build code with different "
9+
"development platforms")
1010
__url__ = "https://github.com/ivankravets/platformio"
1111

1212
__author__ = "Ivan Kravets"

requirements.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
click==2.0
2+
colorama==0.3.1
3+
pyserial==2.7
4+
requests=2.3.0
5+
scons=2.3.0

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
# "SCons"
2424
],
2525
packages=find_packages(),
26+
package_data={"platformio": ["*.ini"]},
2627
entry_points={
2728
"console_scripts": [
2829
"platformio = platformio.__main__:main"
2930
]
3031
},
3132
classifiers=[
32-
"Development Status :: 2 - Pre-Alpha",
33+
"Development Status :: 3 - Alpha",
3334
"Environment :: Console",
3435
"Intended Audience :: Developers",
3536
"License :: OSI Approved :: MIT License",

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ usedevelop = True
1414
deps =
1515
isort
1616
flake8
17+
wheel
1718
commands =
1819
pip install --egg scons
1920

0 commit comments

Comments
 (0)