-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.25 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
import setuptools
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
with open("requirements.txt", "r") as file:
requirements = file.readlines()
setuptools.setup(
name="kal-cal",
version="0.0.1",
author="Brian Welman",
author_email="[email protected]",
description="kalman Filter and Smoother"\
+ "Radio Interoferometric Calibration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/brianwelman2/kal-cal.git",
packages=setuptools.find_packages(),
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
],
python_requires='>=3.6',
test_suite='tests',
install_requires=requirements,
include_package_data=True,
entry_points={
"console_scripts": [
"kalcal = kalcal.cli.main:kalcal_main",
"kal-calibrate = kalcal.cli.main:kalcal_calibrate",
"kal-create = kalcal.cli.main:kalcal_create",
"kal-plot = kalcal.cli.main:kalcal_plot"
]
},
)