mirror of
https://github.com/platformio/platformio-core.git
synced 2025-08-02 11:24:27 +02:00
Preparing for first Alpha
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
||||
# See LICENSE for details.
|
||||
|
||||
VERSION = (0, 0, 0)
|
||||
VERSION = (0, 1, "0-dev")
|
||||
__version__ = ".".join([str(s) for s in VERSION])
|
||||
|
||||
__title__ = "platformio"
|
||||
__description__ = ("An easy way to build code with different development"
|
||||
"platforms")
|
||||
__description__ = ("A console tool to build code with different "
|
||||
"development platforms")
|
||||
__url__ = "https://github.com/ivankravets/platformio"
|
||||
|
||||
__author__ = "Ivan Kravets"
|
||||
|
5
requirements.txt
Normal file
5
requirements.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
click==2.0
|
||||
colorama==0.3.1
|
||||
pyserial==2.7
|
||||
requests=2.3.0
|
||||
scons=2.3.0
|
3
setup.py
3
setup.py
@@ -23,13 +23,14 @@ setup(
|
||||
# "SCons"
|
||||
],
|
||||
packages=find_packages(),
|
||||
package_data={"platformio": ["*.ini"]},
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"platformio = platformio.__main__:main"
|
||||
]
|
||||
},
|
||||
classifiers=[
|
||||
"Development Status :: 2 - Pre-Alpha",
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
|
Reference in New Issue
Block a user