-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 892 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
# Importing setuptools is optional, but adds some features
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'Genutiv',
version = '0.1.0',
description = 'Test accuracy of patterns to predict gender of German nouns.',
long_description = open('README.md').read(),
url = 'http://philipmolloy.com/project/genutiv/',
download_url = 'http://github.com/pamolloy/Genutiv',
author = 'Philip Molloy',
author_email = '[email protected]',
license = '', # TODO(PM) Select a GPL-compatible license
classifiers = [], # TODO(PM) Select classifiers from list on PyPI
requires = ['re','json','urllib2','wikitools'],
packages = ['genutiv', 'genutiv.analysis', 'genutiv.reference'],
#package_data = [] # TODO(PM) Add package data
#data_files = [] # TODO(PM) Add data files
)