File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed
Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ [metadata]
2+ name = smartrandom
3+ version = 0.0.1
4+ author = A.A Suvorov
5+ 6+ description = Random Data Generators
7+ long_description = file: README.md
8+ long_description_content_type = text/markdown
9+ url = https://github.com/smartlegionlab/smartrandom/
10+ project_urls =
11+ Documentation = https://github.com/smartlegionlab/smartrandom/blob/master/README.md
12+ Release notes = https://github.com/smartlegionlab/smartrandom/releases
13+ license = BSD 3-Clause License
14+ classifiers =
15+ Development Status :: 5 - Production/Stable
16+ License :: OSI Approved :: BSD License
17+ Natural Language :: English
18+ Operating System :: OS Independent
19+ Operating System :: POSIX :: Linux
20+ Programming Language :: Python :: 3 :: Only
21+ Topic :: Software Development :: Libraries :: Python Modules
22+
23+ keywords =
24+ password generator
25+ smartrandom
26+ smartlegionlab
27+
28+ [options]
29+ package_dir =
30+ packages = find:
31+ python_requires = >= 3.6
32+ include_package_data = true
33+ zip_safe = false
34+ install_requires =
35+
36+ [coverage:run]
37+ omit =
38+ venv/*
39+ .pytest_cache
40+ *__init__.py
Original file line number Diff line number Diff line change 1+ from setuptools import setup , find_packages
2+
3+ setup (
4+ packages = find_packages (),
5+ )
You can’t perform that action at this time.
0 commit comments