This repository has been archived by the owner on Mar 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
__pycache__ | ||
help | ||
rutimeparser.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include README.md | ||
include LICENSE | ||
include tests.py |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name = 'rutimeparser', | ||
version = '1.0.0', | ||
|
||
author = 'orsinium', | ||
author_email = '[email protected]', | ||
|
||
description = 'Recognize date and time in russian text.', | ||
long_description = open('README.md').read(), | ||
keywords = 'timeparser parse date time datetime russian text', | ||
|
||
packages = ['rutimeparser'], | ||
requires = ['python (>= 3.4)'], | ||
|
||
url = 'https://github.com/orsinium/rutimeparser', | ||
download_url = 'https://github.com/orsinium/rutimeparser/tarball/master', | ||
|
||
license = 'GNU Lesser General Public License v3.0', | ||
classifiers = [ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Plugins', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', | ||
'Natural Language :: Russian', | ||
'Programming Language :: Python', | ||
'Topic :: Scientific/Engineering :: Human Machine Interfaces', | ||
], | ||
) |