You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
526 B
16 lines
526 B
from setuptools import setup, find_packages
|
|
|
|
with open("requirements.txt") as file:
|
|
INSTALL_REQUIRES = file.read().rstrip().split("\n")
|
|
|
|
setup(
|
|
name="prim-wallaper",
|
|
version="1.0",
|
|
description="Create wallpapers using (primitive root) mod 257",
|
|
install_requires=INSTALL_REQUIRES,
|
|
author="Raphael Roberts",
|
|
author_email="raphael.roberts48@gmail.com",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
entry_points={"console_scripts": ["prim-wallaper=prim-wallaper.__main__:main"]},
|
|
)
|