forked from TDisc/FrisPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 671 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 671 Bytes
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
import os
PATH_ROOT = os.path.dirname(__file__)
from setuptools import setup
import frispy # noqa: E402
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="frispy_service",
author="John Carrino",
author_email="john.carrino@gmail.com",
version=frispy.__version__,
description=frispy.__docs__,
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/carrino/FrisPy",
packages=["frispy"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)