8 changed files with 65 additions and 65 deletions
@ -1,19 +1,19 @@ |
|||||
from setuptools import setup, find_packages |
from setuptools import setup, find_packages |
||||
|
|
||||
setup( |
setup( |
||||
name='Klafirc', |
name="Klafirc", |
||||
version="0.1", |
version="0.1", |
||||
long_description=open('README.md').read(), |
long_description=open("README.md").read(), |
||||
url='http://gitlab.rezometz.org/klafyvel/klafirc', |
url="http://gitlab.rezometz.org/klafyvel/klafirc", |
||||
author='klafyvel', |
author="klafyvel", |
||||
author_email="me@klafyvel.me", |
author_email="me@klafyvel.me", |
||||
include_package_data=True, |
include_package_data=True, |
||||
packages=find_packages(), |
packages=find_packages(), |
||||
install_requires= open('requirements.txt').read().split('\n'), |
install_requires=open("requirements.txt").read().split("\n"), |
||||
classifier=[ |
classifier=[ |
||||
'Development Status :: 4 - Beta', |
"Development Status :: 4 - Beta", |
||||
'Operating System :: POSIX :: Linux', |
"Operating System :: POSIX :: Linux", |
||||
'Programming Language :: Python :: 3', |
"Programming Language :: Python :: 3", |
||||
'Topic :: Utilities', |
"Topic :: Utilities", |
||||
], |
], |
||||
) |
) |
||||
|
|||||
Loading…
Reference in new issue