add setup.py
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
1e42592027
commit
a3470c1bbe
33
setup.py
Normal file
33
setup.py
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
import sys
|
||||||
|
import os
|
||||||
|
from setuptools import setup
|
||||||
|
from setuptools.command.install import install
|
||||||
|
|
||||||
|
version = '1.0.0'
|
||||||
|
|
||||||
|
setup(name='tox_wrapper',
|
||||||
|
version=version,
|
||||||
|
description='Tox ctypes wrapping into Python',
|
||||||
|
long_description='Tox ctypes wrapping of c-toxcore into Python3',
|
||||||
|
url='https://git.plastiras.org/emdee/toxygen/',
|
||||||
|
keywords='ctypes Tox messenger',
|
||||||
|
author='Ingvar',
|
||||||
|
maintainer='',
|
||||||
|
license='GPL3',
|
||||||
|
packages=['tox_wrapper'],
|
||||||
|
install_requires=[],
|
||||||
|
include_package_data=True,
|
||||||
|
# dont run directly if you need a proxy
|
||||||
|
# run python3 tox_wrapper/tests/tests_wrapper.py --help
|
||||||
|
test_suite="tox_wrapper.tests.tests_wrapper.main",
|
||||||
|
classifiers=[
|
||||||
|
"Environment :: Console",
|
||||||
|
"Topic :: Internet",
|
||||||
|
"Development Status :: 4 - Beta",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"Programming Language :: Python",
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"License :: OSI Approved",
|
||||||
|
],
|
||||||
|
zip_safe=False
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user