-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (46 loc) · 1.53 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (46 loc) · 1.53 KB
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
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from dotflow import __version__, __description__
from setuptools import setup
from setuptools.command.install import install
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
class CustomInstallCommand(install):
def run(self):
install.run(self)
setup(
name="dotflow",
fullname="dotflow",
version=__version__,
author="Fernando Celmer",
author_email="email@fernandocelmer.com",
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Homepage": "https://github.com/dotflow-io/dotflow",
"Repository": "https://github.com/dotflow-io/dotflow",
"Documentation": "https://dotflow-io.github.io/dotflow",
"Issues": "https://github.com/dotflow-io/dotflow/issues",
},
cmdclass={
"install": CustomInstallCommand,
},
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=["dotflow"],
include_package_data=True,
python_requires=">=3.10",
zip_safe=True,
entry_points={
"console_scripts": ["dotflow=dotflow.main:main"],
},
)