-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1.13 KB
/
setup.py
File metadata and controls
28 lines (25 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
''' This setup.py file is for installing the script of fetch_sdss_images. \
It conforms with PEP 8 guide for python'''
# from setuptools import Extension
from setuptools import setup
with open("README.md", "r",encoding="utf-8") as fh:
long_description = fh.read()
with open("version.txt","r",encoding="utf-8") as vh:
version_description = vh.read()
setup( name='fetch_sdss_images',
version=version_description,
description='A Python package for downloading SDSS images from distinct releases easily!',
long_description=long_description, # Long description read from the the readme file
long_description_content_type="text/markdown",
author='Jean Gomes',
author_email='antineutrinomuon@gmail.com',
url='https://github.com/neutrinomuon/fetch_sdss_images',
install_requires=[ 'numpy','matplotlib' ],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"fetch_sdss_images": "src/python"},
packages=['fetch_sdss_images'],
data_files=[('', ['version.txt']),],
)