-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
89 lines (87 loc) · 3.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
setup(name='vasuki',
version='0.7.1',
description='Vasuki generates different kinds of random unique identifiers, tokens, and words',
long_description=README,
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Object Brokering",
"Topic :: System :: Archiving",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Utilities",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
author='Andreas Motl',
author_email='[email protected]',
url='https://github.com/daq-tools/vasuki',
keywords='random unique identifier token word generator id uuid ulid hashid gibberish nagamani19',
packages=find_packages(),
include_package_data=True,
package_data={
},
zip_safe=False,
test_suite='vasuki.test',
install_requires=[
'docopt-ng<0.10',
'munch<5',
'ulid-py<1.2',
'hashids<1.4',
'gibberish<0.5',
#'correct-horse==0.7.0',
#'flufl.i18n==1.1.3',
],
extras_require={
'develop': [
'build<2',
'bump2version==1.0.1',
'poethepoet<0.33',
'twine<7',
],
'service': [
'responder>=3.0.0.dev0',
],
'test': [
'httpx<0.29',
'pytest<9',
'pytest-cov<7',
],
},
entry_points={
'console_scripts': [
'vasuki = vasuki.cli:run',
],
},
)