Skip to content

Commit

Permalink
Update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ENDrain committed Aug 20, 2022
1 parent 77e567a commit 3ba6312
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 28 deletions.
30 changes: 2 additions & 28 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,31 +1,5 @@
[metadata]
name = omninumeric
version = 1.0.0
author = Andrei Shur
author_email = [email protected]
description = Convert numbers between Arabic and alphabetic numeral systems
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/endrain/omninumeric
keywords = church slavonic, conversion
license = MIT
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Religion
Intended Audience :: Science/Research
long_description = file: docs\README.md

[options]
include_package_data = True
packages =
omninumeric
cyrillic
python_requires = >=3.4
include_package_data = True
37 changes: 37 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from setuptools import setup, find_packages

setup(
name="omninumeric",
version="1.0.0",
author="Andrei Shur",
author_email="[email protected]",
description="Read and write numbers in alphabetic numeral systems",
long_description_content_type="text/markdown",
url="https://github.com/endrain/omninumeric",
keywords=[
"church slavonic",
"conversion",
],
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Localization",
"Intended Audience :: Developers",
"Intended Audience :: Religion",
"Intended Audience :: Science/Research",
],
packages=find_packages(),
python_requires=">=3.4",
)

0 comments on commit 3ba6312

Please sign in to comment.