-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 802 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 802 Bytes
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
version = '0.4.0'
setup(name='recurrent',
version=version,
description="Natural language parsing and deparsing of recurring events",
long_description="See http://github.com/kvh/recurrent",
classifiers=[
'Natural Language :: English',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: BSD License'
],
keywords='calendar recurring date event NLP',
author='Ken Van Haren',
author_email='kvh@science.io',
url='http://github.com/kvh/recurrent',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
install_requires=[
'parsedatetime',
],
python_requires='>3.6.0',
)