19 lines
569 B
Python
19 lines
569 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="Klafirc",
|
|
version="0.1",
|
|
long_description=open("README.md").read(),
|
|
url="http://gitlab.rezometz.org/klafyvel/klafirc",
|
|
author="klafyvel",
|
|
author_email="me@klafyvel.me",
|
|
include_package_data=True,
|
|
packages=find_packages(),
|
|
install_requires=open("requirements.txt").read().split("\n"),
|
|
classifier=[
|
|
"Development Status :: 4 - Beta",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Utilities",
|
|
],
|
|
)
|