-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.48 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
version = "0.2.10"
setup(name='arv.autotest',
version=version,
description="Run tests whenever a file changes",
long_description=open("README.rst").read(),
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Testing",
],
keywords='',
author='Alexis Roda',
author_email='alexis.roda.villalonga@gmail.com',
url='https://github.com/patxoca/arv.autotest',
license='GPLv3+',
packages=find_packages(),
namespace_packages=['arv'],
include_package_data=True,
package_data={
"": ["images/*.png"]
},
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
"blessings",
"future",
"pyinotify",
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
autotest=arv.autotest.main:main
""",
)