forked from sam-may/DigiPyRo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (31 loc) · 903 Bytes
/
setup.py
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
import setuptools
setuptools.setup(
name="digipyro",
version="0.0",
packages=setuptools.find_packages(),
author="The DIYnamics Team",
author_email="DIYnamicsTeam@gmail.com",
description="Digitally Rotate a movie in Python",
install_requires=[
"numpy",
"scipy",
"matplotlib",
"opencv-python",
"tk",
],
scripts=[
"digipyro/scripts/digipyro.py",
"digipyro/scripts/synth.py"]
,
license="Apache",
keywords="education",
url="https://github.com/DIYnamics/digipyro",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
)