mirror of
https://github.com/platformio/platformio-core.git
synced 2025-08-03 11:54:26 +02:00
Preparing for first Alpha
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
||||||
# See LICENSE for details.
|
# See LICENSE for details.
|
||||||
|
|
||||||
VERSION = (0, 0, 0)
|
VERSION = (0, 1, "0-dev")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
__description__ = ("An easy way to build code with different development"
|
__description__ = ("A console tool to build code with different "
|
||||||
"platforms")
|
"development platforms")
|
||||||
__url__ = "https://github.com/ivankravets/platformio"
|
__url__ = "https://github.com/ivankravets/platformio"
|
||||||
|
|
||||||
__author__ = "Ivan Kravets"
|
__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"
|
# "SCons"
|
||||||
],
|
],
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
package_data={"platformio": ["*.ini"]},
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"platformio = platformio.__main__:main"
|
"platformio = platformio.__main__:main"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 2 - Pre-Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
|
Reference in New Issue
Block a user