Showing with 12 additions and 5 deletions.
  1. +1 −1 requirements.txt
  2. +6 −1 setup.cfg
  3. +5 −3 setup.py
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1 +1 @@
-e git+https://github.com/libindic/normalizer.git#egg=libindic_normalizer
-e git+https://github.com/libindic/normalizer.git#egg=libindic_normalizer
7 changes: 6 additions & 1 deletion setup.cfg
Expand Up @@ -7,7 +7,7 @@ license = LGPL-3.0
description-file =
README.md
home-page = https://libindic.org/payyans
requires-python = >=2.7
requires-python = >=3.0
classifier =
Development Status :: 5 - Production/Stable
License :: DFSG approved
Expand All @@ -26,5 +26,10 @@ libindic.api.rest =
unicode2ascii = payyans.expose:unicode2ascii
ascii2unicode = payyans.expose:ascii2unicode

[options.package_data]
* =
templates/libindic.payyans.html
maps/*.map

[wheel]
universal=1
8 changes: 5 additions & 3 deletions setup.py
@@ -1,8 +1,10 @@
#!/usr/bin/env python

from setuptools import setup

setup(
setup_requires=['pbr'],
pbr=True
version="1.0.2",
zip_safe=False,
packages=['libindic.payyans'],
namespace_packages=['libindic']
)