|
1 | 1 | #!/usr/bin/env python |
2 | 2 |
|
3 | | - |
4 | 3 | try: |
5 | 4 | from setuptools import setup |
6 | 5 | except ImportError: |
7 | 6 | from distutils.core import setup |
8 | 7 |
|
9 | | - |
10 | 8 | with open('README.rst') as readme_file: |
11 | 9 | readme = readme_file.read() |
12 | 10 |
|
13 | 11 | with open('HISTORY.rst') as history_file: |
14 | 12 | history = history_file.read() |
15 | 13 |
|
16 | | -requirements = [ |
17 | | -] |
| 14 | +requirements = ['numpy'] |
18 | 15 |
|
19 | | -test_requirements = [ |
20 | | -] |
| 16 | +test_requirements = [] |
21 | 17 |
|
22 | 18 | setup( |
23 | | - name='stringmetric', |
24 | | - version='0.1.0', |
25 | | - description='Python implementations of common string distance and similarity algorithms.', |
26 | | - long_description=readme + '\n\n' + history, |
27 | 19 | author='Stefan Fischer', |
28 | 20 | author_email='sfischer13@ymail.com', |
29 | | - url='https://github.com/sfischer13/python-stringmetric', |
30 | | - packages=[ |
31 | | - 'stringmetric', |
32 | | - ], |
33 | | - package_dir={'stringmetric': 'stringmetric'}, |
34 | | - include_package_data=True, |
35 | | - install_requires=requirements, |
36 | | - license='MIT', |
37 | | - zip_safe=False, |
38 | | - keywords='string metric distance similarity phonetic hamming', |
39 | 21 | classifiers=[ |
40 | 22 | 'Development Status :: 4 - Beta', |
41 | 23 | 'Intended Audience :: Developers', |
|
49 | 31 | 'Programming Language :: Python :: 3 :: Only', |
50 | 32 | 'Programming Language :: Python :: Implementation', |
51 | 33 | 'Programming Language :: Python :: Implementation :: CPython', |
52 | | - 'Programming Language :: Python :: Implementation :: PyPy', |
53 | 34 | 'Topic :: Software Development :: Libraries', |
54 | 35 | 'Topic :: Software Development :: Libraries :: Python Modules', |
55 | 36 | 'Topic :: Text Processing', |
56 | 37 | 'Topic :: Text Processing :: Linguistic', |
57 | 38 | ], |
| 39 | + description='Python implementation of common string distance and similarity algorithms.', |
| 40 | + include_package_data=True, |
| 41 | + install_requires=requirements, |
| 42 | + keywords='string metric distance similarity phonetic hamming levenshtein', |
| 43 | + license='MIT', |
| 44 | + long_description=readme + '\n\n' + history, |
| 45 | + name='stringmetric', |
| 46 | + package_dir={'stringmetric': 'stringmetric'}, |
| 47 | + packages=['stringmetric'], |
58 | 48 | test_suite='tests', |
59 | | - tests_require=test_requirements |
| 49 | + tests_require=test_requirements, |
| 50 | + url='https://github.com/sfischer13/python-stringmetric', |
| 51 | + version='0.2.0', |
| 52 | + zip_safe=False |
60 | 53 | ) |
0 commit comments