|
Revision 1314, 0.9 kB
(checked in by sgillies, 6 months ago)
|
Add test runner
|
| Line | |
|---|
| 1 |
from setuptools import setup, find_packages |
|---|
| 2 |
|
|---|
| 3 |
version = '0.1' |
|---|
| 4 |
readme = open('README.txt', 'rb').read() |
|---|
| 5 |
|
|---|
| 6 |
setup(name='pleiades.normalizer', |
|---|
| 7 |
version=version, |
|---|
| 8 |
description="Normalize Latin labels of the Barrington Atlas to ASCII", |
|---|
| 9 |
long_description=readme, |
|---|
| 10 |
classifiers=[ |
|---|
| 11 |
"Programming Language :: Python", |
|---|
| 12 |
"Topic :: Software Development :: Libraries :: Python Modules", |
|---|
| 13 |
], |
|---|
| 14 |
keywords='latin unicode normalization', |
|---|
| 15 |
author='Sean Gillies', |
|---|
| 16 |
author_email='sgillies@frii.com', |
|---|
| 17 |
url='', |
|---|
| 18 |
license='GPL', |
|---|
| 19 |
packages=find_packages(exclude=['ez_setup']), |
|---|
| 20 |
namespace_packages=['pleiades'], |
|---|
| 21 |
include_package_data=True, |
|---|
| 22 |
zip_safe=False, |
|---|
| 23 |
test_suite='pleiades.normalizer.tests.test_suite', |
|---|
| 24 |
install_requires=[ |
|---|
| 25 |
'setuptools', |
|---|
| 26 |
# -*- Extra requirements: -*- |
|---|
| 27 |
], |
|---|
| 28 |
entry_points=""" |
|---|
| 29 |
# -*- Entry points: -*- |
|---|
| 30 |
""", |
|---|
| 31 |
) |
|---|