From 877308de1b19516a7599cec6f6293def054e34f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bedna=C5=99=C3=ADk?= <jan.bednarik@gmail.com> Date: Thu, 8 Mar 2018 22:56:18 +0100 Subject: [PATCH] Setup.py update. --- .gitignore | 3 ++- setup.py | 57 ++++++++++++++---------------------------------------- 2 files changed, 17 insertions(+), 43 deletions(-) diff --git a/.gitignore b/.gitignore index 1e0408d..7c2d6fc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,9 @@ __pycache__/ +dist/ *.py[cod] .env .cache/ *.egg-info/ .coverage .pytest_cache/ -.idea \ No newline at end of file +.idea diff --git a/setup.py b/setup.py index 6c23239..3477bf9 100644 --- a/setup.py +++ b/setup.py @@ -13,57 +13,30 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: setup( name='openlobby', version='0.1.0', - description='Open Lobby Server', - long_description=long_description, url='https://github.com/openlobby/openlobby-server', - author='Jan Bednařík', + + author='Jan Bednarik', author_email='jan.bednarik@gmail.com', - license='MIT', - packages=find_packages(exclude=['tests']), -) -# TODO -""" - # See https://pypi.python.org/pypi?%3Aaction=list_classifiers - classifiers=[ - # How mature is this project? Common values are - # 3 - Alpha - # 4 - Beta - # 5 - Production/Stable - 'Development Status :: 3 - Alpha', + description='Open Lobby Server', + long_description=long_description, - # Indicate who your project is intended for - 'Intended Audience :: Developers', - 'Topic :: Software Development :: Build Tools', + packages=find_packages(exclude=['tests']), - # Pick your license as you wish (should match "license" above) - 'License :: OSI Approved :: MIT License', + # TODO + # install_requires=[], + # extras_require={ + # 'dev': [], + # 'test': [], + # }, - # Specify the Python versions you support here. In particular, ensure - # that you indicate whether you support Python 2, Python 3 or both. + license='MIT', + classifiers=[ + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], - - # What does your project relate to? - keywords='sample setuptools development', - - - # List run-time dependencies here. These will be installed by pip when - # your project is installed. For an analysis of "install_requires" vs pip's - # requirements files see: - # https://packaging.python.org/en/latest/requirements.html - install_requires=['peppercorn'], - - # List additional groups of dependencies here (e.g. development - # dependencies). You can install these using the following syntax, - # for example: - # $ pip install -e .[dev,test] - extras_require={ - 'dev': ['check-manifest'], - 'test': ['coverage'], - }, ) -""" -- GitLab