Skip to content

Commit

Permalink
Update package version.
Browse files Browse the repository at this point in the history
  Include resources in package.
  • Loading branch information
Yasas Senarath committed Nov 1, 2020
1 parent d7f6384 commit 193d5da
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
graft sinling/resources
global-exclude *.pyc
2 changes: 2 additions & 0 deletions packages.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
emoji
joblib
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
import setuptools

with open("README.md", "r") as fh:
with open('README.md', 'r') as fh:
long_description = fh.read()

with open('packages.txt', 'r') as fh:
requirements = fh.read().split('\n')

setuptools.setup(
name="sinling", # Replace with your own username
version="v0.2.0",
version="0.3.0",
author="Yasas Senarath",
description="A language processing tool for Sinhalese (සිංහල)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ysenarath/sinling",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
include_package_data=True,
)

0 comments on commit 193d5da

Please sign in to comment.