-
Notifications
You must be signed in to change notification settings - Fork 1
/
anaconda-project.yml
75 lines (72 loc) · 1.76 KB
/
anaconda-project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# This is an Anaconda project file.
#
# Here you can describe your project and how to run it.
# Use `anaconda-project run` to run the project.
# The file is in YAML format, please see http://www.yaml.org/start.html for more.
#
#
# Set the 'name' key to name your project
#
name: know_your_ip
#
# Set the 'icon' key to give your project an icon
#
icon:
#
# Set the 'description' key to a one-liner summary
#
description: Get data on IP addresses.
#
# In the commands section, list your runnable scripts, notebooks, and other code.
# Use `anaconda-project add-command` to add commands.
#
commands:
know_your_ip:
unix: python ${PROJECT_DIR}/know_your_ip.py
windows: python %PROJECT_DIR%\know_your_ip.py
supports_http_options: true
#
# In the variables section, list any environment variables your code depends on.
# Use `anaconda-project add-variable` to add variables.
#
variables: {}
#
# In the services section, list any services that should be
# available before your code runs.
# Use `anaconda-project add-service` to add services.
#
services: {}
#
# In the downloads section, list any URLs to download to local files
# before your code runs.
# Use `anaconda-project add-download` to add downloads.
#
downloads: {}
#
# In the packages section, list any packages that must be installed
# before your code runs.
# Use `anaconda-project add-packages` to add packages.
#
packages:
- pip:
- geoip2
- tzwhere
- BeautifulSoup4
- lxml
- shodan
- configparser
- numpy
- requests
#
# You can define multiple, named environment specs.
# Each inherits any global packages or channels,
# but can have its own unique ones also.
# Use `anaconda-project add-env-spec` to add environment specs.
#
env_specs:
default:
packages: []
platforms:
- linux-64
- osx-64
- win-64