forked from amandasaurus/gedcompy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 817 Bytes
/
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
#! /usr/bin/env python
from setuptools import setup
setup(
name='gedcompy',
version='0.1',
packages=['gedcom',],
license='GPLv3+',
test_suite='tests',
description="Parse and create GEDCOM (geneology) files",
author="Rory McCann",
author_email="rory@technomancy.org",
classifiers=[
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Topic :: Sociology :: Genealogy',
'Topic :: Sociology :: History',
'Topic :: Text Processing',
],
)