-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.61 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import os
from setuptools import setup, find_packages
# User-friendly description from README.md
cwd = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(cwd, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setup(
# Name of the package
name='palieasyread',
# Packages to include into the distribution
packages=find_packages('.'),
# Start with a small number and increase it with
# every change you make https://semver.org
version='0.0.3',
# Short description of your library
description='Split Roman pali words into smaller syllables',
# Long description of your library
long_description=long_description,
long_description_content_type='text/markdown',
# Your name
author='Cuong DANG',
# Your email
author_email='https://github.com/vpnry/palieasyread/issues/new',
# Either the link to your github or to your website
url='https://github.com/vpnry/palieasyread',
# Link from which the project can be downloaded
download_url='',
# package_data={
# 'palieasyread': [
# 'templates/*.*',
# 'static/js/*.*',
# 'static/css/*.*']},
# List of keywords
keywords=['pali syllables', 'split', 'roman pali'],
# List of packages to install with this one
# python_requires='>=3.6.0',
install_requires=[],
# https://pypi.org/classifiers/
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers'
]
)