2020-02-07 00:52:04 +03:00
|
|
|
# Topologic
|
|
|
|
|
|
|
|
|
|
|
|
## Instructions for Ubuntu 18.04 or Mint 19
|
|
|
|
```bash
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install python3-pip python3-dev
|
|
|
|
sudo python3 -m pip install --upgrade pip
|
|
|
|
sudo python3 -m pip install virtualenv
|
|
|
|
cd $PROJECT_DIR # the root of this directory
|
|
|
|
python3 -m virtualenv venv -p python3.6
|
|
|
|
source venv/bin/activate
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
# Contributing
|
|
|
|
|
|
|
|
This project welcomes contributions and suggestions. Most contributions require you to
|
|
|
|
agree to a Contributor License Agreement (CLA) declaring that you have the right to,
|
|
|
|
and actually do, grant us the rights to use your contribution. For details, visit
|
|
|
|
https://cla.microsoft.com.
|
|
|
|
|
|
|
|
When you submit a pull request, a CLA-bot will automatically determine whether you need
|
|
|
|
to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the
|
|
|
|
instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
|
|
|
|
|
|
|
|
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
|
|
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
|
|
|
|
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
|
|
|
|
|
|
|
# Privacy
|
|
|
|
|
|
|
|
`topologic` does not collect, store, or transmit any information of any kind back to Microsoft.
|
|
|
|
|
|
|
|
For your convenience, here is the link to the general [Microsoft Privacy Statement](https://privacy.microsoft.com/en-us/privacystatement/).
|