-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
45 lines (40 loc) · 1.42 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
#! /usr/bin/env python
# -*- coding: utf8 -*-
from __future__ import print_function
import os
import sys
from setuptools import setup, find_packages
import setuptools
from pkg_resources import parse_version
assert(parse_version(setuptools.__version__) >= parse_version("38.6.0"))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="bophono",
version="0.2.0", #edit version in __init__.py
author="Esukhia development team",
author_email="[email protected]",
description="Python utils for Tibetan phonetics in different dialects",
license="MIT",
keywords="phonetics IPA tibetan",
url="https://github.com/Esukhia/bophono",
packages=find_packages(),
long_description=read('README.md'),
long_description_content_type="text/markdown",
project_urls={
'Source': 'https://github.com/Esukhia/bophono',
'Tracker': 'https://github.com/Esukhia/bophono/issues',
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: Tibetan"
],
package_data={'bophono': ['data/*', 'data/chinese/*']},
python_requires='>=3',
)