forked from AmEv7Fam/familysearch-python-sdk-opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.36 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.36 KB
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
from distutils.core import setup
import familysearch
setup(
name = 'familysearch-python-sdk-opensource',
packages = ['familysearch-python-sdk-opensource'],
version = familysearch.__version__,
description = 'A Python SDK for FamilySearch.org',
long_description=open('README.rst').read(),
author = 'Elder Evans',
author_email = 'elderamevans@gmail.com',
url = 'https://github.com/elderamevans/familysearch-python-sdk-opensource',
download_url = 'https://github.com/peterldowns/mypackage/tarball/0.1',
keywords = ['FamilySearch', 'API', 'REST', 'family history', 'geneaolgy', 'JSON'],
classifiers = [
"Development Status :: 4 - Beta",
"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"
],
)