-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.13 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.13 KB
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
from setuptools import setup
with open("README.md", "r") as rdme:
desc = rdme.read()
setup(
name = 'scoobi',
version = '0.0.1.8',
url='https://github.com/avialxee/scoobi',
author='Avinash Kumar',
author_email='avialxee@gmail.com',
description='Solar Conventionality-based Organizing Observation data ( SCOOBI )',
py_modules = ["scoobi"],
package_dir={'':'src'},
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
],
long_description=desc,
long_description_content_type = "text/markdown",
install_requires=["astropy", "numpy", "exifread"
],
extras_require = {
"dev" : ["pytest>=3.7",
]
},
entry_points={
"console_scripts": [
"scoobi=scoobi.cli:cli"
],
},
)