Removing Makefile setup.py tox.ini

Signed-off-by: 0x6f736f646f <blackd0t@protonmail.com>
This commit is contained in:
0x6f736f646f
2020-06-25 01:30:44 +03:00
parent 646f0717e4
commit 6e3ca5e8b4
3 changed files with 0 additions and 36 deletions
View File
-25
View File
@@ -1,25 +0,0 @@
from setuptools import setup
setup(
name='project',
version='0.0.1',
url='url',
license='MIT',
author='author',
author_email='email',
description='description',
long_description='long_description',
packages=['project'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
-11
View File
@@ -1,11 +0,0 @@
[tox]
envlist = py35,pep8
skipsdist = True
[testenv]
usedevelop = True
deps = -r{toxinidir}/requirements.test.txt
commands = pytest --cov=project
[testenv:pep8]
commands = flake8