diff --git a/homoglyphs_fork/__init__.py b/homoglyphs_fork/__init__.py index 8c2789d..3e1f7ff 100644 --- a/homoglyphs_fork/__init__.py +++ b/homoglyphs_fork/__init__.py @@ -9,7 +9,6 @@ # main package info __title__ = 'Homoglyphs' -__version__ = '2.0.4' __author__ = 'Gram Orsinium' __license__ = 'MIT' diff --git a/pyproject.toml b/pyproject.toml index 41eba6e..7de3562 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [project] name = "homoglyphs_fork" +version = "2.1.0" authors = [{name = "orsinium", email = "master_fess@mail.ru"}] maintainers = [{name = "Matt Copperwaite", email = "matt@copperwaite.net"}] license = {text = "MIT"} @@ -17,7 +18,6 @@ classifiers = [ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ] -dynamic = ["version", "description"] [project.urls] Home = "https://github.com/yamatt/homoglyphs" diff --git a/setup.py b/setup.py deleted file mode 100644 index 1a9df66..0000000 --- a/setup.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- coding: utf-8 -*- - -# DO NOT EDIT THIS FILE! -# This file has been autogenerated by dephell <3 -# https://github.com/dephell/dephell - -try: - from setuptools import setup -except ImportError: - from distutils.core import setup - -import os.path - -readme = '' -here = os.path.abspath(os.path.dirname(__file__)) -readme_path = os.path.join(here, 'README.rst') -if os.path.exists(readme_path): - with open(readme_path, 'rb') as stream: - readme = stream.read().decode('utf8') - -setup( - long_description=readme, - name='homoglyphs', - version='2.0.4', - description='Homoglyphs', - python_requires='>=3.5', - project_urls={"homepage": "https://github.com/life4/homoglyphs"}, - author='orsinium', - author_email='master_fess@mail.ru', - license='MIT', - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3', 'Programming Language :: Python', - 'Topic :: Software Development :: Libraries :: Python Modules' - ], - packages=['homoglyphs'], - package_dir={"": ""}, - package_data={"homoglyphs": ["*.json"]}, - install_requires=[], -)