-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 lines (31 loc) · 917 Bytes
/
setup.py
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/env python3
# Copyright (c) 2020-2023 oatsu
"""
Python script for PyPI registation
"""
from setuptools import find_packages, setup
version = '1.19.1'
try:
with open("README.md", mode='r', encoding='utf-8') as f:
long_description = f.read()
except UnicodeDecodeError:
with open("README.md", mode='r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='utaupy',
version=version,
description='Python3 module for UTAU and singing-databases',
long_description=long_description,
long_description_content_type='text/markdown',
author='oatsu',
author_email='oatsu.dev@gmail.com',
maintainer='oatsu',
maintainer_email='oatsu.dev@gmail.com',
url='https://github.com/oatsu-gh/utaupy',
packages=find_packages(),
install_requires=[],
classifiers=[
'Programming Language :: Python :: 3'
],
keywords=['UTAU']
)