forked from dijxtra/simplepyged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 857 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
from setuptools import setup, find_packages
from simplepyged import __version__
setup(
name='simplepyged',
version=__version__,
description='A simple Python GEDCOM parser',
long_description=open('README.rst', 'r').read(),
keywords='gedcom, genealogy',
author=u'Nikola Škorić',
author_email='[email protected]',
url='https://github.com/dijxtra/simplepyged/',
license='GPL',
package_dir={'simplepyged': 'simplepyged'},
include_package_data=True,
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Sociology :: Genealogy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
zip_safe=False,
)