-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
43 lines (40 loc) · 1.62 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
try:
# Setuptools or Distribute is required to support running `python setup.py test`
from setuptools import setup
except ImportError:
# Distutils supports everything else; just run the test suite manually
from distutils.core import setup
import familysearch
version = familysearch.__version__
setup(
name = 'familysearch-python-sdk-opensource',
packages = ['familysearch'],
version = version,
description = 'A Python SDK for FamilySearch.org',
long_description=open('README.rst').read(),
author = 'Elder Evans',
author_email = '[email protected]',
url = 'https://github.com/elderamevans/familysearch-python-sdk-opensource',
download_url = 'https://github.com/elderamevans/familysearch-python-sdk-opensource/releases/tag/v' + version,
keywords = ['FamilySearch', 'API', 'REST', 'family history', 'geneaolgy', 'JSON'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Web Environment",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Sociology :: Genealogy",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)