-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (38 loc) · 1.34 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
45
46
from setuptools import setup
import pathlib
from Adv2 import Version
VERSION = Version.version()
KEYWORDS = ["ADV file reader", 'Astro Digital Video version 2 file reader']
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
]
INSTALL_REQUIRES = ['numpy']
HERE = pathlib.Path.cwd()
README = (HERE / "README.md").read_text()
setup(
name="Adv2",
python_requires='>=3.7',
description='Adv2reader reads version 2 Astro Digital Video files.',
license='License :: OSI Approved :: MIT License',
url=r'https://github.com/bob-anderson-ok/adv2reader',
version=VERSION,
author='Bob Anderson',
author_email='[email protected]',
maintainer='Bob Anderson',
maintainer_email='[email protected]',
keywords=KEYWORDS,
long_description=README,
long_description_content_type="text/markdown",
packages=["Adv2"],
include_package_data=True,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
)