41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
|
|
from glob import glob
|
|
from os.path import basename
|
|
from os.path import splitext
|
|
|
|
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='sheerka',
|
|
version='0.1',
|
|
license='',
|
|
description='A human/computer communication interface',
|
|
long_description='',
|
|
author='Kodjo Sossouvi',
|
|
author_email='kodjo.sossouvi@gmail.com',
|
|
url='',
|
|
packages=find_packages('src'),
|
|
package_dir={'': 'src'},
|
|
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
classifiers=[
|
|
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: Unix',
|
|
'Operating System :: POSIX',
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
'Topic :: Utilities',
|
|
], install_requires=['pytest']
|
|
)
|