-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 969 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 969 Bytes
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
from setuptools import setup, find_packages
setup(
name='irony',
version='0.1.0',
license='GPL',
author="Mohammad S.Niaei",
author_email='m.shemuni@gmail.com',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/mshemuni/irony',
download_url='https://github.com/user/reponame/archive/v_01.tar.gz',
keywords=['IRAF', 'Photometry', 'Python'],
install_requires=[
'astroalign',
'astropy',
'matplotlib',
'mpl_point_clicker',
'numpy',
'pandas',
'photutils',
'pyraf',
'sep',
],
classifiers=[
'Natural Language :: English',
'Intended Audience :: Developers',
# 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Astronomy',
'Operating System :: POSIX :: Linux',
]
)