-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.52 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
VERSION = '2.11.1'
setup(
name='randword',
description='The Python package for generating random English words',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=[
'python', 'package', 'python-package', 'random',
'word', 'words', 'generator', 'generation',
'random-word', 'random-words', 'random-word-generator',
'random-word-generation', 'english',
'english-word', 'english-words'
],
version=VERSION,
author='Artyom Bezmenov (8nhuman)',
author_email='[email protected]',
license='MIT',
packages=['randword'],
include_package_data=True,
project_urls={
'Bug Tracker': 'https://github.com/8nhuman8/randword/issues',
'Source Code': 'https://github.com/8nhuman8/randword',
'Documentation': 'https://randword.readthedocs.io/en/stable/',
'Download': f'https://github.com/8nhuman8/randword/archive/{VERSION}.tar.gz',
'Homepage': 'https://github.com/8nhuman8/randword'
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
]
)