-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.56 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
from pathlib import Path
from setuptools import find_packages, setup
path = Path(__file__).resolve().parent
README = (path / "README.md").read_text(encoding="utf-8")
setup(name="pyFBIG",
version="0.0.2",
description="pyFBIG is a Python package that generates fake data for you.",
long_description_content_type="text/markdown",
long_description=README,
classifiers=[
# See https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
keywords="Python - Fake Brazilian ID Generator projected for data test mock generator",
author="Daniel Sobrinho",
author_email="contact@danielsobrinho.com.br",
url="https://github.com/Daniel3dartist/PyFBIG",
project_urls={
"Bug Tracker": "https://github.com/Daniel3dartist/PyFBIG/issues",
"Documentation": "https://github.com/Daniel3dartist/PyFBIG",
"Source Code": "https://github.com/Daniel3dartist/PyFBIGr",
},
license="MIT License",
packages=["pyFBIG"],
package_data={
"pyFBID": ["py.typed"],
},
platforms=["any"],
python_requires=">=3.7",
install_requires=[],
)