Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ildar-ceo committed Jun 16, 2016
1 parent 267b7da commit 312588d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion foruse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__email__ = "vistoyn@gmail.com"
__copyright__ = "Copyright 2016"
__license__ = "MIT"
__version__ = "1.0"
__version__ = "1.0.1"

from . import log
from .lib import *
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@
sudo pip uninstall foruse - Удаление пакета
python setup.py register - Зарегистрировать пакет в pypi
python setup.py sdist upload - Залить на сервер
Классификация https://pypi.python.org/pypi?%3Aaction=list_classifiers
"""

from setuptools import setup, find_packages
from os.path import join, dirname

PACKAGE = "foruse"
NAME = "foruse"
DESCRIPTION = "Library For use on python"
DESCRIPTION = "Library foruse on python"
URL = "https://github.com/vistoyn/python-foruse"
LICENSE = 'MIT License'
AUTHOR = __import__(PACKAGE).__author__
Expand All @@ -31,20 +33,23 @@
author_email=AUTHOR_EMAIL,
license=LICENSE,
url = URL,
#platform = ["Any"],
download_url = "https://github.com/vistoyn/python-foruse/releases/download/"+VERSION+"/foruse-"+VERSION+".tar.gz",
packages=find_packages(),
include_package_data = True,
install_requires=[
'python-dateutil',
],
keywords = [
"foruse", "python foruse", "bayrell", "python library"
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
Expand Down

0 comments on commit 312588d

Please sign in to comment.