-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 808 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='DevExDashboard',
version='0.0.1',
packages=['DevExDashboard'],
install_requires=[
'requests',
'importlib; python_version == "3.7.7"',
],
# metadata to display on PyPI
author = "Vincent (Vince) J. Straub",
author_email = "vincejstraub@gmail.com",
# description = "Dashboard for monitoring and preprocessing animal movement trajectories.",
# keywords = "tool, dashboard, tracking",
# url = "http://example.com/HelloWorld/", # project home page, if any
# project_urls = {
# "Bug Tracker": "https://bugs.example.com/HelloWorld/",
# "Documentation": "https://docs.example.com/HelloWorld/",
# "Source Code": "https://code.example.com/HelloWorld/",
# },
zip_safe = False,
)