-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.13 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.13 KB
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
33
34
35
36
37
"""Setup file for TrollFactory."""
from setuptools import setup
VERSION: str = '2.1.4'
DESCRIPTION: str = 'An amazingly accurate fake personality generator.'
with open('README.md', encoding='utf-8') as file:
LONG_DESCRIPTION: str = file.read()
setup(
name='TrollFactory',
version=VERSION,
author='Stanisławowski Research & Development',
author_email='<office@stanislawowski.pl>',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=['trollfactory'],
install_requires=['schwifty'],
keywords=['fake', 'personality', 'personalities', 'generator'],
entry_points={
'console_scripts': [
'trollfactory = trollfactory.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
include_package_data=True,
)