-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.1 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.1 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
from setuptools import setup
from setuptools import find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst"), "r") as fh:
long_description = fh.read()
setup(
name='balancedtime',
version='0.16b',
author="Daniel Bishop",
author_email="lolologist@gmail.com",
description="Convert regular time into 12-hour days and nights",
long_description=long_description,
long_description_content_type="text/x-rst",
url='https://github.com/Lolologist/balancedtime',
package_dir={'': 'balancedtime'},
packages=[''],
install_requires=[
'astral',
'uszipcode'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
)