forked from spacerest/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.15 KB
/
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
33
34
35
36
from distutils.core import setup
from setuptools import setup, find_packages
# long_description
readme_path = "./README.md"
long_description = open(readme_path, 'r').read()
setup(
name = 'moon',
packages = find_packages(),
version = '1.1.0',
license='MIT',
description = 'Gets moon visualizations courtesy of NASA/Ernie Wright',
long_description_content_type="text/markdown",
long_description = long_description,
author = 'Sadie Parker',
author_email = '[email protected]',
url = 'https://github.com/spacerest/moon',
download_url = 'https://github.com/spacerest/moon/archive/v_1_1_0.tar.gz',
keywords = ['MOON', 'ART'],
install_requires=[
'numpy~=1.16',
'opencv-python~=4.2.0.34',
'matplotlib~=3.2.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Other Audience',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)