-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 908 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 908 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
27
28
import os
from setuptools import setup, find_namespace_packages
install_requires = []
requirements_txt = ""
if os.name == "nt": requirements_txt = "PyVutils/requirements.txt"
else: requirements_txt = "PyVutils/requirements_posix.txt"
with open(requirements_txt) as f: install_requires = f.read().split("\n")
install_requires = list(filter(lambda e: len(e) > 0, install_requires))
setup(
name="PyVutils",
version="1.0",
author="Vic P.",
author_email="vic4key@gmail.com",
packages=find_namespace_packages(exclude=["Examples"]),
url="https://github.com/vic4key/PyVutils.git",
license="LICENSE",
description="Vutils for Python",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
install_requires=install_requires,
include_package_data=True,
package_data={},
)