Metadata-Version: 2.1
Name: auto-env-config
Version: 1.0.11
Summary: Configuring your python environment automatically.
Home-page: 
Author: 曾钦李
Author-email: 1838696034@qq.com
Maintainer: 
Maintainer-email: 
License: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

```python
import os
import sys
os.system(f'{sys.executable} -m pip install auto-env-config')
```
### Use requirements.txt
```python
import aec
aec.install('requirements.txt')
```
### Use config
```json
{
  "pip_index": "https://pypi.org/simple",
  "packages": [
    {
      "package_name": "numpy",
      "version": "1.22.0"
    }
  ]
}
```
```python
import aec
aec.install('install.config.json')
```
