forked from uogbuji/amara3-names
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·106 lines (83 loc) · 3.05 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Highly recommend installing using `pip install -U .` not `python setup.py install`
Uses pkgutil-style namespace package (Working on figuring out PEP 420)
Note: careful not to conflate install_requires with requirements.txt
https://packaging.python.org/discussions/install-requires-vs-requirements/
Reluctantly use setuptools for now to get install_requires & long_description_content_type
'''
import sys
#from setuptools import setup
from distutils.core import setup
PROJECT_NAME = 'amara3.names'
PROJECT_DESCRIPTION = 'Tools to handle human names (and organization names). Credit to https://www.github.com/rliebz/whoswho by Robert Liebowitz <[email protected]> (MIT License)'
PROJECT_LICENSE = 'License :: OSI Approved :: Apache Software License'
PROJECT_AUTHOR = 'Uche Ogbuji'
PROJECT_AUTHOR_EMAIL = '[email protected]'
PROJECT_MAINTAINER = 'Zepheira'
PROJECT_MAINTAINER_EMAIL = '[email protected]'
PROJECT_URL = 'http://zepheira.com/'
PACKAGE_DIR = {'amara3.names': 'pylib'}
PACKAGES = [
'amara3.names',
'amara3.names.config',
]
SCRIPTS = [
# 'exec/marc2bf',
]
CORE_REQUIREMENTS = [
'amara3.iri',
'nameparser',
'pytest',
]
# From http://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
'Intended Audience :: Developers',
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
"Topic :: Text Processing :: Indexing",
#"Development Status :: 5 - Production/Stable",
]
KEYWORDS=['naturallanguage', 'name', 'match', 'parser']
version_file = 'pylib/version.py'
exec(compile(open(version_file, "rb").read(), version_file, 'exec'), globals(), locals())
__version__ = '.'.join(version_info)
LONGDESC = '''amara3.names
Tools to parse human (and eventually organization) names, compare them, etc.
Requires Python 3.5+. To install:
python setup.py install
# Acknowledgments
The seeds of the code was from [whoswho 0.1.2](https://pypi.org/project/whoswho/)
Also incorporates refactored code from [nameparser 1.0.2](https://pypi.org/project/nameparser/)
See also:
* https://github.com/gwu-libraries/namesparser
'''
LONGDESC_CTYPE = 'text/markdown',
setup(
name=PROJECT_NAME,
version=__version__,
description=PROJECT_DESCRIPTION,
license=PROJECT_LICENSE,
author=PROJECT_AUTHOR,
author_email=PROJECT_AUTHOR_EMAIL,
maintainer=PROJECT_MAINTAINER,
maintainer_email=PROJECT_MAINTAINER_EMAIL,
url=PROJECT_URL,
package_dir=PACKAGE_DIR,
packages=PACKAGES,
scripts=SCRIPTS,
install_requires=CORE_REQUIREMENTS,
classifiers=CLASSIFIERS,
long_description=LONGDESC,
long_description_content_type=LONGDESC_CTYPE,
keywords=KEYWORDS,
)