-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (41 loc) · 1.53 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
37
38
39
40
41
42
43
44
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 = '2.0.0',
license='MIT',
description = 'Gets moon visualizations courtesy of SVS, 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_2_0_0.tar.gz',
keywords = ['MOON', 'ART', 'NASA', 'DIALAMOON'],
install_requires=[
"matplotlib>=3.10,<4.0",
"numpy>=2.2,<2.5",
"opencv-python>=4.11,<5.0",
"setuptools>=58.1,<69.0",
],
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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
package_data={'constants': ['res/constants.json']},
include_package_data=True
)