-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 749 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
from suntime import __version__, __author__, __license__
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(name='suntime',
version=__version__,
description='Simple sunset and sunrise time calculation python library',
long_description=long_description,
long_description_content_type='text/markdown',
author=__author__,
url='https://github.com/SatAgro/suntime',
copyright='Copyright 2024 SatAgro',
license=__license__,
packages=['suntime'],
install_requires=['python-dateutil'])