forked from kaustavdm/pyAvroPhonetic
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·30 lines (28 loc) · 1.22 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
#!/usr/bin/env python
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from pyavrophonetic import __version__
setup(name='PyAvroPhonetic',
version=__version__,
description='Python implementation of Avro Phonetic',
long_description=open('README.rst', 'rt').read(),
author='Kaustav Das Modak',
author_email='[email protected]',
url='https://github.com/kaustavdm/pyAvroPhonetic',
download_url='https://github.com/kaustavdm/pyAvroPhonetic/zipball/' + __version__,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data = {'pyavrophonetic': ['*.rst', 'resources/*.json']},
include_package_data = True,
install_requires=["simplejson >= 3.0.0"],
license='GNU GPL v3 or later',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)