-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (32 loc) · 1.21 KB
/
setup.py
File metadata and controls
executable file
·34 lines (32 loc) · 1.21 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
#!/usr/bin/python3
import setuptools
from hebireki import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='hebireki',
version=__version__,
packages=["hebireki"],
url='https://github.com/akiyamn/hebireki',
license='WTFPLv2',
author='akiyamn',
author_email='10993186+akiyamn@users.noreply.github.com',
long_description=long_description,
long_description_content_type="text/markdown",
description='Simple implementation of the Traditional Japanese Calendar system (Wareki)',
keywords=["japanese", "calendar", "wareki", "era", "reiwa"],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Localization',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: Public Domain',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Natural Language :: Japanese',
"Operating System :: OS Independent"
]
)