-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.14 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from dvnv import VERSION
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="dvnv",
version=VERSION,
author="sudo-julia",
author_email="jlearning AT tuta DOT io",
description="Automate the creation of development environments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sudo-julia/dvnv",
packages=find_packages(),
license="Apache-2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Utilities",
],
keywords="development automation",
include_package_data=True,
install_requires=["appdirs>=1.4.4", "rich>=10.12.0"],
python_requires=">=3.8",
entry_points={
"console_scripts": ["dvnv = dvnv.__main__:run_dvnv"],
},
)