-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
43 lines (38 loc) · 1.36 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
#! /usr/bin/env python
# -*- coding: utf8 -*-
from __future__ import print_function
import os
import setuptools
from pkg_resources import parse_version
assert(parse_version(setuptools.__version__) >= parse_version("38.6.0"))
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8") as f:
return f.read()
setuptools.setup(
name="pyewts",
version="0.2.0", #edit version in __init__.py
author="Esukhia development team",
author_email="[email protected]",
description="Python utils for EWTS conversion from / to Unicode",
license="Apache2",
keywords="tibetan",
url="https://github.com/Esukhia/pyewts",
packages=setuptools.find_packages(),
long_description=read('README.md'),
long_description_content_type="text/markdown",
project_urls={
'Source': 'https://github.com/Esukhia/pyewts',
'Tracker': 'https://github.com/Esukhia/pyewts/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 :: Apache Software License",
"Natural Language :: Tibetan"
],
python_requires='>=3.4'
)