Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
asahi417 committed May 11, 2022
0 parents commit ec70f22
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WIP
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages

with open('README.md', 'r') as f:
readme = f.read()
version = '0.0.0'
setup(
name='tweetnlp',
packages=find_packages(exclude=["asset", "examples", "static", "templates", "tests"]),
version=version,
license='MIT',
description='TBA',
url='https://github.com/cardiffnlp/tweetnlp',
download_url="https://github.com/cardiffnlp/tweetnlp/archive/{}.tar.gz".format(version),
keywords=['tweet', 'nlp', 'language-model'],
long_description=readme,
long_description_content_type="text/markdown",
author='Asahi Ushio',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
],
include_package_data=True,
test_suite='tests',
install_requires=[],
python_requires='>=3.6',
entry_points={
'console_scripts': [],
}
)
Empty file added tweetnlp/__init__.py
Empty file.

0 comments on commit ec70f22

Please sign in to comment.