Skip to content

Commit

Permalink
Preparing for uploading to PyPi.
Browse files Browse the repository at this point in the history
  • Loading branch information
gugarosa committed Jun 21, 2019
1 parent b7b6eaf commit fd79e40
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,14 @@ A visualization package in order to better illustrate what is happening with you
We belive that everything have to be easy. Not diffucult or daunting, NALP will be the one-to-go package that you will need, from the very first instalattion to the daily-tasks implementing needs. If you may, just run the following under your most preferende Python environment (raw, conda, virtualenv, whatever)!:

```Python
pip install .
pip install nalp
```

Or, if you prefer to install the bleeding-edge version, please clone this repository and use:

```Python
pip install .

---

## Environment configuration
Expand All @@ -123,6 +128,6 @@ No specific additional commands needed.

## Support

We know that we do our best, but it's inevitable to acknowlodge that we make mistakes. If you every need to report a bug, report a problem, talk to us, please do so! We will be avaliable at our bests at this repository or gustavo.rosa@unesp.br.
We know that we do our best, but it is inevitable to acknowlodge that we make mistakes. If you every need to report a bug, report a problem, talk to us, please do so! We will be avaliable at our bests at this repository or gustavo.rosa@unesp.br.

---
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup

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

setup(name='nalp',
version='1.0.1',
description='Natural Adversarial Language Processing',
long_description=long_description,
long_description_content_type='text/markdown',
author='Gustavo Rosa',
author_email='gth.rosa@uol.com.br',
url='https://github.com/gugarosa/nalp',
Expand Down Expand Up @@ -33,7 +37,7 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: PyPy :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
Expand Down

0 comments on commit fd79e40

Please sign in to comment.