Skip to content
This repository has been archived by the owner on Mar 30, 2020. It is now read-only.

Commit

Permalink
+installation info
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Apr 2, 2017
1 parent 927f626 commit a6b9388
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__pycache__
help
rutimeparser.egg-info
3 changes: 3 additions & 0 deletions MANIFEST.in
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.
34 changes: 34 additions & 0 deletions setup.py
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',
],
)

0 comments on commit a6b9388

Please sign in to comment.