-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 963 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name='impysonator',
version='0.1.3',
description='Seja Impessoal!',
url='http://github.com/guidiego/impysonator',
author='Guiherme Diego',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=["*.tests"]),
zip_safe=False,
keywords='python impessoal paper artigo revisão review',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
entry_points={
'console_scripts': [
'impysonator=impysonator:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/guidiego/impysonator/issues',
'Source': 'https://github.com/guidiego/impysonator/'
}
)