Skip to content

Commit 83068e3

Browse files
Smart Random v0.0.1 (package)
1 parent b55945f commit 83068e3

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

setup.cfg

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[metadata]
2+
name = smartrandom
3+
version = 0.0.1
4+
author = A.A Suvorov
5+
author_email = [email protected]
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

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
packages=find_packages(),
5+
)

0 commit comments

Comments
 (0)