-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 1.33 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
"""Provider for Faker which adds information about educational institutions and academics."""
import setuptools
try:
with open("README.md", "r") as fh:
long_description = fh.read() # pylint: disable=invalid-name
except FileNotFoundError:
# pylint: disable=invalid-name
long_description = (
"Provider for [Faker](https://faker.readthedocs.io/) which adds fake "
"information about educational institutions and academics."
)
setuptools.setup(
name="faker-edu",
version="1.1.0",
author="Allison Letts, Aaron Crosman, Paul Prescod",
author_email="[email protected]",
description="Provider for Faker which adds fake information about "
"educational institutions and academics.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SFDO-Community-Sprints/Snowfakery-Edu",
packages=setuptools.find_packages(),
install_requires=["faker"],
classifiers=[
"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",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)